diff --git a/docs/_modules/index.html b/docs/_modules/index.html index c8f1abe..3b90bf1 100644 --- a/docs/_modules/index.html +++ b/docs/_modules/index.html @@ -3,7 +3,7 @@
# In this case turbomole version and build will be set to None. # For example it may be: # escf (node001) : TURBOMOLE rev. compiled 1 Jul 2018 at 20:38:15 - r_version = r"V([\d\.]+\d)\s+.*" + # + # Note: TURBOMOLE 7.6 uses the notation 7-6. Catch it and convert to 7.6 + r_version = r"V([\d\.-]+\d)\s+.*" r_build = r"V[\d\.]+\d\s+\((.*)\)" match_version = re.search(r_version, match.group(3).strip()) match_build = re.search(r_build, match.group(3).strip()) if match_version: tm_version = match_version.group(1).strip() + tm_version = tm_version.replace("-", ".") else: tm_version = None if match_build: diff --git a/docs/_modules/turbomoleio/output/states.html b/docs/_modules/turbomoleio/output/states.html index bec479d..ef03168 100644 --- a/docs/_modules/turbomoleio/output/states.html +++ b/docs/_modules/turbomoleio/output/states.html @@ -3,7 +3,7 @@ - turbomoleio.output.states — turbomoleio 1.3.1 documentation + turbomoleio.output.states — turbomoleio 1.4.0 documentation @@ -14,7 +14,7 @@ - + @@ -34,7 +34,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/_modules/turbomoleio/output/tests/test_data.html b/docs/_modules/turbomoleio/output/tests/test_data.html index 3e62591..c13fc90 100644 --- a/docs/_modules/turbomoleio/output/tests/test_data.html +++ b/docs/_modules/turbomoleio/output/tests/test_data.html @@ -3,7 +3,7 @@ - turbomoleio.output.tests.test_data — turbomoleio 1.3.1 documentation + turbomoleio.output.tests.test_data — turbomoleio 1.4.0 documentation @@ -14,7 +14,7 @@ - + @@ -34,7 +34,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/_modules/turbomoleio/output/tests/test_files.html b/docs/_modules/turbomoleio/output/tests/test_files.html index 89e3f96..7a0c577 100644 --- a/docs/_modules/turbomoleio/output/tests/test_files.html +++ b/docs/_modules/turbomoleio/output/tests/test_files.html @@ -3,7 +3,7 @@ - turbomoleio.output.tests.test_files — turbomoleio 1.3.1 documentation + turbomoleio.output.tests.test_files — turbomoleio 1.4.0 documentation @@ -14,7 +14,7 @@ - + @@ -34,7 +34,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/_modules/turbomoleio/output/tests/test_parser.html b/docs/_modules/turbomoleio/output/tests/test_parser.html index ec20a79..854f8ad 100644 --- a/docs/_modules/turbomoleio/output/tests/test_parser.html +++ b/docs/_modules/turbomoleio/output/tests/test_parser.html @@ -3,7 +3,7 @@ - turbomoleio.output.tests.test_parser — turbomoleio 1.3.1 documentation + turbomoleio.output.tests.test_parser — turbomoleio 1.4.0 documentation @@ -14,7 +14,7 @@ - + @@ -34,7 +34,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/_modules/turbomoleio/output/tests/test_states.html b/docs/_modules/turbomoleio/output/tests/test_states.html index 8936173..f7bc829 100644 --- a/docs/_modules/turbomoleio/output/tests/test_states.html +++ b/docs/_modules/turbomoleio/output/tests/test_states.html @@ -3,7 +3,7 @@ - turbomoleio.output.tests.test_states — turbomoleio 1.3.1 documentation + turbomoleio.output.tests.test_states — turbomoleio 1.4.0 documentation @@ -14,7 +14,7 @@ - + @@ -34,7 +34,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/_modules/turbomoleio/testfiles/utils.html b/docs/_modules/turbomoleio/testfiles/utils.html index 3c2338f..6c16b71 100644 --- a/docs/_modules/turbomoleio/testfiles/utils.html +++ b/docs/_modules/turbomoleio/testfiles/utils.html @@ -3,7 +3,7 @@ - turbomoleio.testfiles.utils — turbomoleio 1.3.1 documentation + turbomoleio.testfiles.utils — turbomoleio 1.4.0 documentation @@ -14,7 +14,7 @@ - + @@ -34,7 +34,7 @@ turbomoleio - 1.3.1 + 1.4.0 @@ -142,7 +142,7 @@ Source code for turbomoleio.testfiles.utils from turbomoleio.output.states import EigerRunner, States TESTDIR = os.path.split(__file__)[0] -TM_VERSIONS = ["TM_v7.3", "TM_v7.3.1", "TM_v7.4.1", "TM_v7.5.1"] +TM_VERSIONS = ["TM_v7.3", "TM_v7.3.1", "TM_v7.4.1", "TM_v7.5.1", "TM_v7.6"] TESTS_CONFIGS_TM_VERSIONS = { tmv: loadfn(os.path.join(TESTDIR, "outputs", tmv, "tests_config.yaml")) for tmv in TM_VERSIONS diff --git a/docs/_sources/index.rst.txt b/docs/_sources/index.rst.txt index 85a6ef5..714e8d9 100644 --- a/docs/_sources/index.rst.txt +++ b/docs/_sources/index.rst.txt @@ -27,14 +27,15 @@ turbomoleio turbomoleio is a python library containing a set of tools for the generation of inputs and parsing of outputs for `TURBOMOLE `_, based on the open-source `pymatgen `_ library. turbomoleio is compatible with python version 3.8 and higher. The current version of turbomoleio is -compatible with TURBOMOLE version 7.5. Care is taken to provide backward compatibility for parsing of output +compatible with TURBOMOLE version 7.6. Care is taken to provide backward compatibility for parsing of output files generated with versions of TURBOMOLE down to 7.3. Full compatibility (i.e. input generation using define) -is only tested for TURBOMOLE version 7.5. The following table summarizes the compatibility (full, including input +is only tested for TURBOMOLE version 7.6. The following table summarizes the compatibility (full, including input generation using define) between TURBOMOLE and turbomoleio versions: ======================= ======================= TURBOMOLE version(s) turbomoleio version(s) ======================= ======================= +7.6 series 1.4.x series 7.5 series 1.3.x series 7.4 series 1.2.x series 7.3 series 1.0.x and 1.1.x series diff --git a/docs/_static/documentation_options.js b/docs/_static/documentation_options.js index db0704b..849f66f 100644 --- a/docs/_static/documentation_options.js +++ b/docs/_static/documentation_options.js @@ -1,6 +1,6 @@ var DOCUMENTATION_OPTIONS = { URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '1.3.1', + VERSION: '1.4.0', LANGUAGE: 'en', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/docs/api/modules.html b/docs/api/modules.html index b3b52dc..70c6fbd 100644 --- a/docs/api/modules.html +++ b/docs/api/modules.html @@ -4,7 +4,7 @@ - turbomoleio — turbomoleio 1.3.1 documentation + turbomoleio — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.core.html b/docs/api/turbomoleio.core.html index 69c565e..bdd5d7d 100644 --- a/docs/api/turbomoleio.core.html +++ b/docs/api/turbomoleio.core.html @@ -4,7 +4,7 @@ - turbomoleio.core package — turbomoleio 1.3.1 documentation + turbomoleio.core package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.core.tests.html b/docs/api/turbomoleio.core.tests.html index b0d64c2..53818e9 100644 --- a/docs/api/turbomoleio.core.tests.html +++ b/docs/api/turbomoleio.core.tests.html @@ -4,7 +4,7 @@ - turbomoleio.core.tests package — turbomoleio 1.3.1 documentation + turbomoleio.core.tests package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.html b/docs/api/turbomoleio.html index f0071f0..e393193 100644 --- a/docs/api/turbomoleio.html +++ b/docs/api/turbomoleio.html @@ -4,7 +4,7 @@ - turbomoleio package — turbomoleio 1.3.1 documentation + turbomoleio package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.input.html b/docs/api/turbomoleio.input.html index 0d28cbe..7c5a743 100644 --- a/docs/api/turbomoleio.input.html +++ b/docs/api/turbomoleio.input.html @@ -4,7 +4,7 @@ - turbomoleio.input package — turbomoleio 1.3.1 documentation + turbomoleio.input package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.input.templates.html b/docs/api/turbomoleio.input.templates.html index 4a50324..2ecbacb 100644 --- a/docs/api/turbomoleio.input.templates.html +++ b/docs/api/turbomoleio.input.templates.html @@ -4,7 +4,7 @@ - turbomoleio.input.templates package — turbomoleio 1.3.1 documentation + turbomoleio.input.templates package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.input.tests.html b/docs/api/turbomoleio.input.tests.html index d2758f6..e40db7b 100644 --- a/docs/api/turbomoleio.input.tests.html +++ b/docs/api/turbomoleio.input.tests.html @@ -4,7 +4,7 @@ - turbomoleio.input.tests package — turbomoleio 1.3.1 documentation + turbomoleio.input.tests package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.output.html b/docs/api/turbomoleio.output.html index d2e110b..a34981b 100644 --- a/docs/api/turbomoleio.output.html +++ b/docs/api/turbomoleio.output.html @@ -4,7 +4,7 @@ - turbomoleio.output package — turbomoleio 1.3.1 documentation + turbomoleio.output package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.output.tests.html b/docs/api/turbomoleio.output.tests.html index 22b1520..5fc4520 100644 --- a/docs/api/turbomoleio.output.tests.html +++ b/docs/api/turbomoleio.output.tests.html @@ -4,7 +4,7 @@ - turbomoleio.output.tests package — turbomoleio 1.3.1 documentation + turbomoleio.output.tests package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.testfiles.html b/docs/api/turbomoleio.testfiles.html index 793db22..efe0993 100644 --- a/docs/api/turbomoleio.testfiles.html +++ b/docs/api/turbomoleio.testfiles.html @@ -4,7 +4,7 @@ - turbomoleio.testfiles package — turbomoleio 1.3.1 documentation + turbomoleio.testfiles package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/appendix.html b/docs/appendix.html index b88699c..fa864ba 100644 --- a/docs/appendix.html +++ b/docs/appendix.html @@ -4,7 +4,7 @@ - Appendix — turbomoleio 1.3.1 documentation + Appendix — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/bugs.html b/docs/bugs.html index 1f737e8..f7411ad 100644 --- a/docs/bugs.html +++ b/docs/bugs.html @@ -4,7 +4,7 @@ - Reporting bugs — turbomoleio 1.3.1 documentation + Reporting bugs — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -36,7 +36,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/changelog.html b/docs/changelog.html index 4e519ef..62451d0 100644 --- a/docs/changelog.html +++ b/docs/changelog.html @@ -4,7 +4,7 @@ - Changelog — turbomoleio 1.3.1 documentation + Changelog — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/coord.html b/docs/coord.html index 54efbe0..69150fa 100644 --- a/docs/coord.html +++ b/docs/coord.html @@ -4,7 +4,7 @@ - The coord file — turbomoleio 1.3.1 documentation + The coord file — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/datagroups.html b/docs/datagroups.html index 31101ec..4427927 100644 --- a/docs/datagroups.html +++ b/docs/datagroups.html @@ -4,7 +4,7 @@ - The data group files — turbomoleio 1.3.1 documentation + The data group files — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/definerunner.html b/docs/definerunner.html index 5bb5293..00e627a 100644 --- a/docs/definerunner.html +++ b/docs/definerunner.html @@ -4,7 +4,7 @@ - Running define — turbomoleio 1.3.1 documentation + Running define — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/developer/definerunner.html b/docs/developer/definerunner.html index 070602b..7baceda 100644 --- a/docs/developer/definerunner.html +++ b/docs/developer/definerunner.html @@ -4,7 +4,7 @@ - Define runner — turbomoleio 1.3.1 documentation + Define runner — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/developer/introduction.html b/docs/developer/introduction.html index 19b6ce9..16df5b7 100644 --- a/docs/developer/introduction.html +++ b/docs/developer/introduction.html @@ -4,7 +4,7 @@ - Contributing — turbomoleio 1.3.1 documentation + Contributing — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/developer/parsing_logs.html b/docs/developer/parsing_logs.html index 5ed5546..c46e1fb 100644 --- a/docs/developer/parsing_logs.html +++ b/docs/developer/parsing_logs.html @@ -4,7 +4,7 @@ - Output logs parsing — turbomoleio 1.3.1 documentation + Output logs parsing — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/developer/testing.html b/docs/developer/testing.html index 55e6aee..9f664f7 100644 --- a/docs/developer/testing.html +++ b/docs/developer/testing.html @@ -4,7 +4,7 @@ - Testing — turbomoleio 1.3.1 documentation + Testing — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/developer/versioning.html b/docs/developer/versioning.html index eb19195..dc4efd7 100644 --- a/docs/developer/versioning.html +++ b/docs/developer/versioning.html @@ -4,7 +4,7 @@ - Versioning — turbomoleio 1.3.1 documentation + Versioning — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/genindex.html b/docs/genindex.html index 60ce12f..17f64f3 100644 --- a/docs/genindex.html +++ b/docs/genindex.html @@ -3,7 +3,7 @@ - Index — turbomoleio 1.3.1 documentation + Index — turbomoleio 1.4.0 documentation @@ -14,7 +14,7 @@ - + @@ -34,7 +34,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/index.html b/docs/index.html index 4bbd44a..a1201c8 100644 --- a/docs/index.html +++ b/docs/index.html @@ -4,7 +4,7 @@ - turbomoleio — turbomoleio 1.3.1 documentation + turbomoleio — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -36,7 +36,7 @@ turbomoleio - 1.3.1 + 1.4.0 @@ -99,9 +99,9 @@ turbomoleioTURBOMOLE, based on the open-source pymatgen library. turbomoleio is compatible with python version 3.8 and higher. The current version of turbomoleio is -compatible with TURBOMOLE version 7.5. Care is taken to provide backward compatibility for parsing of output +compatible with TURBOMOLE version 7.6. Care is taken to provide backward compatibility for parsing of output files generated with versions of TURBOMOLE down to 7.3. Full compatibility (i.e. input generation using define) -is only tested for TURBOMOLE version 7.5. The following table summarizes the compatibility (full, including input +is only tested for TURBOMOLE version 7.6. The following table summarizes the compatibility (full, including input generation using define) between TURBOMOLE and turbomoleio versions: @@ -110,13 +110,16 @@ turbomoleio7.5 series +7.6 series +1.4.x series + +7.5 series 1.3.x series -7.4 series +7.4 series 1.2.x series -7.3 series +7.3 series 1.0.x and 1.1.x series diff --git a/docs/license.html b/docs/license.html index 0dfd04d..3cfe3ce 100644 --- a/docs/license.html +++ b/docs/license.html @@ -4,7 +4,7 @@ - License — turbomoleio 1.3.1 documentation + License — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/objects.inv b/docs/objects.inv index 6b32926..9ed23fb 100644 Binary files a/docs/objects.inv and b/docs/objects.inv differ diff --git a/docs/output_parsing.html b/docs/output_parsing.html index a9bb0e9..c2012b8 100644 --- a/docs/output_parsing.html +++ b/docs/output_parsing.html @@ -4,7 +4,7 @@ - Outputs parsing — turbomoleio 1.3.1 documentation + Outputs parsing — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/py-modindex.html b/docs/py-modindex.html index 807f27b..5111519 100644 --- a/docs/py-modindex.html +++ b/docs/py-modindex.html @@ -3,7 +3,7 @@ - Python Module Index — turbomoleio 1.3.1 documentation + Python Module Index — turbomoleio 1.4.0 documentation @@ -14,7 +14,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/search.html b/docs/search.html index 8fdec4c..ece90f3 100644 --- a/docs/search.html +++ b/docs/search.html @@ -3,7 +3,7 @@ - Search — turbomoleio 1.3.1 documentation + Search — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/searchindex.js b/docs/searchindex.js index bcfba6d..deca981 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["api/modules", "api/turbomoleio", "api/turbomoleio.core", "api/turbomoleio.core.tests", "api/turbomoleio.input", "api/turbomoleio.input.templates", "api/turbomoleio.input.tests", "api/turbomoleio.output", "api/turbomoleio.output.tests", "api/turbomoleio.testfiles", "appendix", "bugs", "changelog", "coord", "datagroups", "definerunner", "developer/definerunner", "developer/introduction", "developer/parsing_logs", "developer/testing", "developer/versioning", "index", "license", "output_parsing"], "filenames": ["api/modules.rst", "api/turbomoleio.rst", "api/turbomoleio.core.rst", "api/turbomoleio.core.tests.rst", "api/turbomoleio.input.rst", "api/turbomoleio.input.templates.rst", "api/turbomoleio.input.tests.rst", "api/turbomoleio.output.rst", "api/turbomoleio.output.tests.rst", "api/turbomoleio.testfiles.rst", "appendix.rst", "bugs.rst", "changelog.rst", "coord.rst", "datagroups.rst", "definerunner.rst", "developer/definerunner.rst", "developer/introduction.rst", "developer/parsing_logs.rst", "developer/testing.rst", "developer/versioning.rst", "index.rst", "license.rst", "output_parsing.rst"], "titles": ["turbomoleio", "turbomoleio package", "turbomoleio.core package", "turbomoleio.core.tests package", "turbomoleio.input package", "turbomoleio.input.templates package", "turbomoleio.input.tests package", "turbomoleio.output package", "turbomoleio.output.tests package", "turbomoleio.testfiles package", "Appendix", "Reporting bugs", "Changelog", "The coord file", "The data group files", "Running define", "Define runner", "Contributing", "Output logs parsing", "Testing", "Versioning", "turbomoleio", "License", "Outputs parsing"], "terms": {"packag": [0, 10, 11, 12, 13, 15, 17, 18, 19, 20, 21, 22], "subpackag": 0, "core": [0, 1, 7, 13, 14, 16], "submodul": [0, 1], "base": [0, 1, 3, 4, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 21, 22, 23], "modul": [0, 12, 14, 15, 16, 19, 20, 21, 23], "control": [0, 1, 3, 4, 7, 9, 12, 15, 16, 19, 21, 22, 23], "datagroup": [0, 1, 3, 7, 9, 12, 20, 21, 23], "molecul": [0, 1, 3, 7, 13, 15, 19, 21, 23], "period": [0, 1, 7, 12, 21, 23], "symmetri": [0, 1, 7, 14, 15, 23], "util": [0, 1, 6, 7, 15, 16, 19], "content": [0, 14, 22, 23], "input": [0, 1, 2, 7, 12, 14, 15, 16, 18, 19, 20, 21, 23], "defin": [0, 1, 2, 3, 5, 6, 7, 9, 12, 13, 14, 17, 19, 20, 21, 22], "output": [0, 1, 2, 4, 9, 12, 13, 14, 15, 20, 21, 22], "data": [0, 1, 2, 3, 8, 12, 13, 15, 16, 18, 21, 22], "file": [0, 1, 2, 4, 8, 9, 11, 12, 15, 16, 17, 18, 19, 20, 21, 22], "parser": [0, 1, 8, 9, 18, 19, 21, 23], "state": [0, 1, 2, 4, 14, 15, 21, 22], "testfil": [0, 1, 7, 8, 12, 18, 19], "test": [1, 2, 4, 7, 9, 15, 17, 21], "test_control": [1, 2], "test_datagroup": [1, 2], "test_molecul": [1, 2], "test_period": [1, 2], "test_util": [1, 2, 4], "basesystem": [1, 2], "coord_lin": [1, 2], "to_coord_fil": [1, 2], "to_coord_str": [1, 2], "to_fil": [1, 2, 7, 14], "get_coord_lin": [1, 2], "get_mol_and_indices_frozen": [1, 2], "add_cosmo": [1, 2, 16], "cpc": [1, 2, 14], "energi": [1, 2, 7, 14, 15, 18, 21, 23], "from_fil": [1, 2, 7, 13, 14, 18, 23], "from_metr": [1, 2], "get_charg": [1, 2, 14], "get_shel": [1, 2, 7, 14], "get_subfiles_list": [1, 2], "gradient": [1, 2, 7, 12, 14, 23], "is_uhf": [1, 2, 7], "remove_last_energi": [1, 2], "remove_last_gradi": [1, 2], "set_disp": [1, 2, 14, 16], "default": [1, 2, 4, 7, 9, 14, 15, 18, 19], "metric": [1, 2, 4, 15], "delta_": [1, 2], "from_str": [1, 2, 7, 18], "n_step": [1, 2, 7], "plot": [1, 2, 7, 14, 23], "last_grad_max": [1, 2], "last_grad_norm": [1, 2], "max_gradi": [1, 2], "norm": [1, 2, 7], "shell": [1, 2, 7, 14, 15], "as_dict": [1, 2, 7, 23], "from_dict": [1, 2, 7, 23], "irrep": [1, 2, 7, 15], "to_datagroup": [1, 2], "total_electron": [1, 2, 7], "adg": [1, 2, 14], "cdg": [1, 2, 9, 14, 15], "kdg": [1, 2, 14], "mdgo": [1, 2, 14], "sdg": [1, 2, 14], "sdgo": [1, 2, 14], "add_data_group": [1, 2, 14], "change_data_group": [1, 2, 14, 16], "compar": [1, 2, 3, 7, 8, 9, 18, 19], "empti": [1, 2, 7, 14, 15, 23], "kill_data_group": [1, 2, 14], "modify_data_group_opt": [1, 2, 14], "ndg": [1, 2], "number_of_data_group": [1, 2], "show_data_group": [1, 2, 14], "show_data_group_opt": [1, 2, 14], "show_subfile_fnam": [1, 2], "cleanup_str": [1, 2], "compare_datagroup_str": [1, 2], "remove_com": [1, 2], "remove_dg_from_list": [1, 2], "split_string_to_dg_list": [1, 2], "bondangl": [1, 2], "compute_valu": [1, 2], "coord_str": [1, 2], "coord_typ": [1, 2], "n_atom": [1, 2], "collinearbendingangl": [1, 2], "dihedralangl": [1, 2], "distanc": [1, 2, 7, 13, 15], "internaldefinit": [1, 2, 13], "get_subclass_from_str": [1, 2], "is_valid": [1, 2], "to_str": [1, 2], "inversedist": [1, 2], "moleculesystem": [1, 2, 13, 21], "add_bond_angl": [1, 2, 13], "add_dihedr": [1, 2], "add_dist": [1, 2, 13], "get_int_def_inconsist": [1, 2], "has_inconsist": [1, 2], "outofplaneangl": [1, 2], "perpendicularbendingangl": [1, 2], "periodicsystem": [1, 2, 12, 13], "structur": [1, 2, 3, 7, 9, 12, 13, 14, 18, 19, 21], "define_quit": [1, 2], "get_tm_vers": [1, 2], "templat": [1, 4, 6, 12, 15], "test_defin": [1, 4], "defineerror": [1, 4, 15, 16], "defineexpecterror": [1, 4, 15], "defineirederror": [1, 4], "defineparametererror": [1, 4], "definerunn": [1, 4, 6, 9, 16, 19, 21], "dump_command_fil": [1, 4], "run_ful": [1, 4, 15, 16], "run_generate_mo_fil": [1, 4, 15, 16], "run_update_internal_coord": [1, 4, 15, 16], "unsupporteddefinestateerror": [1, 4], "parametersvalidationerror": [1, 4], "ex_sett": [1, 4], "get_define_templ": [1, 4, 15], "schema_define_param": [1, 4, 16], "validate_paramet": [1, 4, 15], "test_data": [1, 7], "test_fil": [1, 7, 18], "test_pars": [1, 7, 18], "test_stat": [1, 7], "aoforcenumericalintegrationdata": [1, 7, 23], "from_pars": [1, 7, 18, 23], "aoforcerotationaldata": [1, 7, 23], "aoforcevibrationaldata": [1, 7, 23], "get_freqs_df": [1, 7], "n_negative_freq": [1, 7], "n_positive_freq": [1, 7], "n_zero_freq": [1, 7], "basedata": [1, 7, 9, 18], "basisdata": [1, 7, 23], "cosmodata": [1, 7, 23], "dftdata": [1, 7, 23], "dispersioncorrectiondata": [1, 7, 23], "electrostaticmomentsdata": [1, 7, 23], "escfdata": [1, 7, 23], "escfiterationdata": [1, 7, 23], "functionaldata": [1, 7, 23], "geometrydata": [1, 7, 23], "integraldata": [1, 7, 23], "mp2data": [1, 7, 23], "mp2result": [1, 7, 23], "periodicitydata": [1, 7, 23], "relaxconvergencedata": [1, 7, 23], "relaxdata": [1, 7, 23], "relaxgradientsdata": [1, 7, 23], "ridata": [1, 7, 23], "rundata": [1, 7, 23], "scfdata": [1, 7, 23], "scfenergiesdata": [1, 7, 18, 23], "scfiterationdata": [1, 7, 23], "plot_energi": [1, 7, 23], "singleexcit": [1, 7], "smearingdata": [1, 7, 23], "spindata": [1, 7, 23], "statptdata": [1, 7, 23], "symmetrydata": [1, 7, 23], "turbomoledata": [1, 7, 23], "aoforceoutput": [1, 7, 23], "egradoutput": [1, 7, 23], "escfonlyoutput": [1, 7, 18, 23], "escfoutput": [1, 7, 23], "gradoutput": [1, 7, 23], "jobexoutput": [1, 7, 23], "mp2output": [1, 7, 23], "relaxoutput": [1, 7, 23], "ricc2output": [1, 7, 23], "scfoutput": [1, 7, 23], "statptoutput": [1, 7, 23], "all_don": [1, 7], "aoforce_analysi": [1, 7], "aoforce_numerical_integr": [1, 7], "basi": [1, 2, 4, 7, 15, 18, 23], "center": [1, 7, 23], "coordin": [1, 2, 4, 7, 12, 13, 15], "cosmo_head": [1, 7], "cosmo_result": [1, 7], "density_functional_data": [1, 7], "dftd": [1, 7], "egrad_excited_st": [1, 7], "electrostatic_mo": [1, 7], "escf_excit": [1, 7], "escf_gs_total_en": [1, 7], "escf_iter": [1, 7], "fermi": [1, 7], "get_split_jobex_pars": [1, 7], "get_valu": [1, 7], "grep_lin": [1, 7], "header": [1, 2, 7, 18], "integr": [1, 7, 9, 16, 17, 21, 23], "mp2_data": [1, 7], "mp2_result": [1, 7], "periodicity_data": [1, 7], "pre_escf_run": [1, 7], "pre_scf_run": [1, 7], "rdgrad_memori": [1, 7], "relax_conv_info": [1, 7], "relax_gradient_valu": [1, 7], "relax_info": [1, 7], "rij_info": [1, 7], "riper_scf_energi": [1, 7], "s2": [1, 7], "scf_energi": [1, 7], "scf_iter": [1, 7], "statpt_info": [1, 7], "string": [1, 2, 3, 4, 6, 7, 8, 9, 14, 15, 16, 18, 20, 23], "time": [1, 4, 7, 14, 15, 19, 22, 23], "convert_float": [1, 7], "convert_int": [1, 7], "convert_time_str": [1, 7], "eigeroutput": [1, 7], "compare_st": [1, 7], "eigerrunn": [1, 7], "get_eiger_output": [1, 7], "run": [1, 2, 4, 7, 9, 12, 14, 16, 18, 19, 21, 22], "has_fractional_occ": [1, 7], "max_occup": [1, 7], "eigenvalu": [1, 7, 19, 23], "filter_st": [1, 7], "gap": [1, 7, 23], "generate_lowest_filled_st": [1, 7], "has_hol": [1, 7, 23], "homo": [1, 7], "homo_index": [1, 7], "insert": [1, 7, 15], "irrep_indic": [1, 7], "lumo": [1, 7], "lumo_index": [1, 7], "n_state": [1, 7], "occup": [1, 2, 7, 23], "spin": [1, 7, 23], "get_mos_energi": [1, 7], "itestconfig": [1, 9], "define_timeout": [1, 9], "delete_tmp_dir": [1, 3, 6, 8, 9, 19], "dryrun": [1, 9, 19], "dryrun_fpath": [1, 9], "dryrun_use_ref_control": [1, 9], "generate_ref": [1, 9], "tol": [1, 2, 7, 9, 19], "itesterror": [1, 9], "assert_mson": [1, 9], "assert_almost_equ": [1, 9, 19], "compare_differ": [1, 9], "generate_control_for_test": [1, 9], "generate_reference_out_parser_fil": [1, 9], "generate_reference_output": [1, 9], "get_control_filepath": [1, 9], "get_control_integr": [1, 9], "get_sp": [1, 9], "get_tfp": [1, 9], "gisnan": [1, 9], "has_matplotlib": [1, 9], "run_itest": [1, 9, 19], "temp_dir": [1, 9, 19], "touch_fil": [1, 9], "i": [1, 2, 3, 4, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "act": [1, 14], "an": [1, 2, 4, 7, 9, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "interfac": [1, 4, 9, 12, 21, 22], "turbomol": [1, 2, 7, 9, 11, 12, 13, 14, 15, 16, 18, 20, 21, 23], "It": [1, 2, 3, 7, 14, 15, 17, 18, 19, 22], "allow": [1, 2, 4, 7, 8, 9, 13, 14, 15, 16, 18, 19, 22], "gener": [1, 2, 4, 7, 8, 9, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23], "pars": [1, 2, 7, 8, 12, 13, 14, 16, 20, 21], "easili": [1, 7, 15, 18, 19, 23], "thi": [1, 2, 4, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "root": [1, 7, 19, 23], "testcontrol": [2, 3], "test_add_cosmo": [2, 3, 4, 6], "test_cpc": [2, 3], "test_disp": [2, 3], "test_energi": [2, 3], "test_from_fil": [2, 3], "test_from_metr": [2, 3], "test_get_charg": [2, 3], "test_get_shel": [2, 3], "test_get_subfiles_list": [2, 3], "test_gradi": [2, 3], "test_is_uhf": [2, 3], "test_remove_energi": [2, 3], "test_remove_energy_in_control": [2, 3], "test_remove_gradi": [2, 3], "test_remove_gradient_in_control": [2, 3], "testdatagroupfunct": [2, 3], "pytestmark": [2, 3, 19], "test_adg": [2, 3], "test_cdg": [2, 3], "test_kdg": [2, 3], "test_mdgo": [2, 3], "test_sdg": [2, 3], "test_sdgo": [2, 3], "testenergi": [2, 3], "test_energy_mp2": [2, 3], "test_energy_scf": [2, 3], "testgradi": [2, 3], "test_empty_gradi": [2, 3], "test_fail_pars": [2, 3], "testshel": [2, 3], "test_clos": [2, 3, 4, 6, 7, 8], "test_fract": [2, 3], "test_uhf": [2, 3, 7, 8], "check_equivalent_dg": [2, 3], "test_cleanup": [2, 3], "test_compar": [2, 3], "test_compare_datagroup_str": [2, 3], "test_empti": [2, 3], "test_modify_data_group_opt": [2, 3], "test_remove_com": [2, 3], "test_remove_dg_from_list": [2, 3], "test_sdg_subfil": [2, 3], "test_show_data_group_opt": [2, 3], "test_show_subfile_fnam": [2, 3], "test_split_string_to_dg_list": [2, 3], "testinternaldefinit": [2, 3], "test_bond_angl": [2, 3], "test_collinear_bending_angl": [2, 3], "test_dihedral_angl": [2, 3], "test_dist": [2, 3], "test_from_str": [2, 3], "test_inverse_dist": [2, 3], "test_out_of_plane_angl": [2, 3], "test_perpendicular_bending_angl": [2, 3], "testmoleculesystem": [2, 3], "test_add_bond_angl": [2, 3], "test_add_dihedr": [2, 3], "test_add_dist": [2, 3], "test_check_index": [2, 3], "test_disord": [2, 3], "test_dummy_atom": [2, 3], "test_to_coord_str": [2, 3], "test_to_fil": [2, 3], "check_dg": [2, 3], "check_user_defined_bonds_dg": [2, 3], "testperiodicsystem": [2, 3], "test_periodic_2d": [2, 3], "test_periodic_3d": [2, 3], "test_periodic_wrong_rot": [2, 3], "test_read_periodic_2d": [2, 3], "testgetvers": [2, 3], "test_v72": [2, 3], "test_v731": [2, 3], "test_v741": [2, 3], "test_v751": [2, 3], "object": [2, 3, 4, 6, 7, 8, 9, 12, 13, 15, 16, 17, 18, 19, 21, 22], "repres": [2, 3, 7, 13, 15, 19, 22], "physic": [2, 7, 19, 22], "system": [2, 4, 7, 12, 14, 15, 19, 21, 22, 23], "class": [2, 3, 4, 6, 7, 8, 9, 18, 19, 22, 23], "molecule_or_structur": 2, "frozen_indic": [2, 13], "none": [2, 4, 6, 7, 8, 9, 14, 15, 18, 23], "0": [2, 4, 7, 9, 13, 19, 20, 21, 22, 23], "sourc": [2, 3, 4, 6, 7, 8, 9, 17, 19, 21, 22], "msonabl": [2, 7, 9, 21, 23], "common": [2, 7, 15, 18, 21, 22], "construct": [2, 4, 7, 8, 15], "paramet": [2, 3, 4, 6, 7, 8, 9, 16, 19, 21], "pymatgen": [2, 13, 21], "set": [2, 3, 4, 7, 9, 13, 14, 15, 16, 18, 19, 21, 23], "indic": [2, 7, 13, 22], "atom": [2, 7, 12, 13, 15], "should": [2, 3, 4, 6, 7, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "have": [2, 6, 13, 14, 15, 17, 18, 19, 21, 22, 23], "fix": [2, 16, 19, 20, 21, 22], "cartesian": [2, 7, 13], "1": [2, 7, 9, 13, 15, 19, 20, 21, 22, 23], "2": [2, 4, 7, 9, 13, 15, 19, 21, 22], "3": [2, 7, 13, 15, 17, 19, 20, 21, 22], "give": [2, 11, 19, 22], "line": [2, 3, 7, 13, 14, 15, 18, 19, 22], "coord": [2, 3, 4, 7, 9, 14, 15, 19, 21], "intern": [2, 4, 7, 13, 14, 15, 16, 23], "return": [2, 3, 4, 6, 7, 9, 14, 15, 16, 18, 19, 22, 23], "list": [2, 3, 4, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 22, 23], "type": [2, 3, 4, 7, 8, 9, 13, 14, 15, 16, 21, 22, 23], "filepath": [2, 4, 7], "write": [2, 7, 14, 18, 21, 22], "str": [2, 3, 4, 7, 9, 15], "path": [2, 4, 7, 9, 14, 15, 16, 19, 23], "abstract": [2, 7, 17, 18], "creat": [2, 4, 7, 9, 12, 15, 16, 18, 19, 20, 23], "implement": [2, 4, 9, 14, 15, 16, 17, 18, 19, 22, 23], "separ": [2, 6, 8, 14, 19, 22], "fmt": 2, "depend": [2, 4, 7, 15, 18, 19], "specifi": [2, 7, 9, 11, 14, 15, 22], "format": [2, 7, 13, 14, 17, 19, 21, 22], "The": [2, 3, 4, 7, 8, 9, 16, 17, 18, 20, 21, 22], "can": [2, 4, 7, 9, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "ani": [2, 7, 9, 14, 15, 16, 19, 22], "other": [2, 4, 6, 7, 8, 9, 13, 14, 15, 16, 17, 18, 19, 22, 23], "support": [2, 7, 9, 14, 15, 17, 18, 19, 20, 22], "could": [2, 7, 13, 16, 18, 19, 22, 23], "If": [2, 4, 7, 8, 9, 14, 15, 16, 18, 19, 22, 23], "code": [2, 4, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "would": [2, 7, 13, 15, 16, 17, 18, 19, 22, 23], "try": [2, 11, 14, 16], "infer": 2, "from": [2, 3, 4, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "name": [2, 3, 4, 7, 8, 9, 14, 15, 16, 18, 19, 22, 23], "contain": [2, 7, 9, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23], "convert": [2, 4, 7, 9, 14, 17, 18, 23], "frozen": [2, 7, 13], "f": [2, 7, 13, 22], "append": [2, 9, 13, 19], "end": [2, 4, 7, 9, 13, 14, 15, 18, 22], "cell_str": 2, "periodic_str": 2, "lattice_str": 2, "periodic_extens": 2, "5": [2, 12, 13, 15, 19, 20, 21, 22], "get": [2, 6, 7, 9, 14, 18, 19, 22], "cell": 2, "For": [2, 7, 11, 13, 14, 15, 16, 18, 19, 20, 22, 23], "1d": [2, 7], "consist": [2, 12, 22], "singl": [2, 7, 9, 14, 15, 18, 19, 20, 22, 23], "number": [2, 3, 7, 9, 14, 15, 20, 22], "lattic": [2, 7, 12], "2d": [2, 7], "b": [2, 4, 7, 14, 15, 22], "gamma": [2, 7], "angl": [2, 7], "between": [2, 7, 9, 14, 15, 19, 21, 22], "3d": [2, 7], "6": [2, 7, 15, 19, 22], "c": [2, 7, 14, 15, 22], "alpha": [2, 7, 14, 15], "beta": [2, 7, 14, 15], "onli": [2, 4, 7, 8, 9, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "both": [2, 9, 14, 18, 19, 22, 23], "describ": [2, 4, 7, 14, 16, 17, 18, 19, 23], "matrix": [2, 7, 15], "float": [2, 3, 4, 7, 9, 15, 18], "amount": [2, 19, 21], "angstrom": [2, 7, 13, 15], "artifici": 2, "ad": [2, 14, 15, 16, 18, 19, 21, 22], "vacuum": 2, "non": [2, 7, 22], "direct": [2, 7, 19, 22], "when": [2, 4, 7, 13, 14, 15, 16, 17, 18, 19, 20, 22], "ar": [2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "provid": [2, 4, 7, 8, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "namedtupl": [2, 7], "function": [2, 3, 4, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 20, 22, 23], "interact": [2, 14, 15, 22, 23], "directli": [2, 7, 14, 15, 16, 18, 19, 22, 23], "also": [2, 4, 7, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "relat": [2, 4, 12, 15, 23], "e": [2, 4, 7, 11, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "g": [2, 4, 7, 11, 14, 15, 18, 19, 20, 23], "etc": 2, "dg_list": [2, 14], "us": [2, 4, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "store": [2, 7, 8, 9, 12, 13, 14, 15, 18, 19, 20, 21, 23], "group": [2, 3, 13, 15, 16, 18, 19, 21, 23], "A": [2, 7, 8, 12, 14, 15, 17, 18, 19, 22], "kei": [2, 7, 9, 14, 15, 22], "valu": [2, 3, 4, 7, 8, 9, 13, 15, 16, 18, 19, 21, 23], "pair": 2, "specif": [2, 4, 6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "mai": [2, 6, 7, 12, 14, 18, 19, 22], "seri": [2, 14, 18, 19, 20, 21, 23], "combin": [2, 7, 15, 18, 22], "thereof": 2, "initi": [2, 7, 14, 19, 22, 23], "usual": [2, 7, 14, 15, 18, 23], "read": [2, 7, 13, 14, 19, 20, 21, 22, 23], "epsilon": [2, 4, 7, 15], "nppa": [2, 4, 7, 15], "nspa": [2, 4, 7, 15], "disex": [2, 4, 7, 15], "rsolv": [2, 4, 7, 15], "routf": [2, 4, 7, 15], "caviti": [2, 4, 7, 15], "use_old_amat": [2, 4, 15], "add": [2, 7, 14, 15, 16, 18, 19, 20, 22], "cosmo": [2, 3, 7, 15, 23], "keyword": [2, 7, 9, 14, 15], "option": [2, 4, 7, 9, 13, 14, 15, 16, 18, 19, 22, 23], "all": [2, 3, 4, 6, 7, 8, 9, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "written": [2, 4, 13, 14, 17, 19, 22, 23], "permitt": [2, 15], "scale": [2, 15], "screen": [2, 7, 15], "charg": [2, 4, 7, 15, 18, 22, 23], "int": [2, 4, 7, 15], "grid": [2, 7, 15, 23], "point": [2, 7, 15, 16, 18, 19, 20], "per": [2, 7, 15], "segment": [2, 15], "threshold": [2, 7, 15, 23], "element": [2, 3, 7, 9, 14, 15], "outer": [2, 15], "solvent": [2, 15], "sphere": [2, 15], "factor": [2, 7, 15], "outli": [2, 15], "correct": [2, 7, 8, 9, 12, 14, 15, 16, 19, 22, 23], "accept": [2, 15, 16, 17, 18, 22], "open": [2, 11, 14, 15, 21], "leav": [2, 15, 19], "untidi": [2, 15], "seam": [2, 15], "close": [2, 7, 14, 15, 22], "pave": [2, 15], "intersect": [2, 15], "bool": [2, 4, 7, 8, 9, 15], "true": [2, 3, 4, 7, 8, 9, 13, 14, 15, 19], "setup": [2, 15, 19, 20], "7": [2, 12, 15, 19, 20, 21, 22], "dest_dir": 2, "force_overwrit": 2, "fals": [2, 4, 7, 8, 9, 14, 15, 19], "copi": [2, 4, 15, 22], "referenc": [2, 19], "here": [2, 7, 8, 9, 14, 16, 17, 18, 19, 23], "destin": 2, "folder": [2, 4, 8, 9, 12, 14, 15, 17, 18, 19], "alreadi": [2, 4, 8, 14, 15, 16, 18, 19, 22], "exist": [2, 9, 13, 14, 15, 16, 18, 19], "present": [2, 4, 7, 13, 14, 15, 17, 19, 22], "overwritten": [2, 8], "properti": [2, 7, 8, 13, 18, 22, 23], "absent": [2, 7], "miss": [2, 7, 14, 15, 18], "classmethod": [2, 7], "filenam": [2, 7, 9], "given": [2, 3, 4, 7, 9, 13, 14, 15, 16, 18, 19, 20, 22, 23], "which": [2, 7, 8, 9, 11, 13, 14, 16, 18, 19, 22, 23], "new": [2, 7, 11, 12, 14, 15, 16, 17, 20, 21, 22], "redund_inp": 2, "extract": [2, 7, 12, 14, 15, 18, 19, 21, 23], "xxx": 2, "shells_typ": 2, "instanc": [2, 7, 9, 13, 14, 15, 16, 18, 23], "form": [2, 9, 13, 15, 22, 23], "grad": [2, 7, 12, 23], "determin": [2, 7, 9, 13, 14, 15, 19, 22, 23], "uhf": [2, 7, 14, 15, 23], "backup_suffix": 2, "remov": [2, 3, 7, 9, 14, 18, 19, 22], "last": [2, 7, 13, 23], "step": [2, 7, 14, 15, 22, 23], "In": [2, 3, 7, 8, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "addit": [2, 3, 9, 12, 13, 14, 15, 16, 18, 19, 20, 22, 23], "origin": [2, 9, 14, 19, 22], "locat": [2, 17, 19], "n": [2, 4, 13, 15], "extern": [2, 11, 19, 23], "call": [2, 6, 7, 13, 14, 15, 16, 18, 19, 22, 23], "current": [2, 4, 7, 12, 14, 15, 17, 18, 19, 21], "modif": [2, 9, 12, 19, 20, 22], "been": [2, 4, 6, 7, 12, 15, 16, 18, 19, 21, 22, 23], "done": [2, 6, 7, 8, 13, 14, 15, 16, 19], "well": [2, 12, 13, 15, 18, 19, 20, 22, 23], "case": [2, 3, 4, 7, 8, 9, 14, 15, 16, 17, 18, 19, 22], "ignor": [2, 3, 7, 15], "rais": [2, 3, 4, 7, 9, 14, 15, 16, 19], "runtimeerror": [2, 7], "dispersion_correct": [2, 7], "dispers": [2, 7, 14, 15, 23], "method": [2, 4, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 22, 23], "dft": [2, 4, 7, 14, 15, 23], "d1": [2, 4, 7, 15], "d2": [2, 4, 7, 15], "d3": [2, 4, 15], "bj": [2, 4, 15], "insensit": 2, "disp": [2, 4, 15], "elimin": 2, "collect": [2, 19, 22, 23], "tm": [2, 7], "execut": [2, 4, 7, 9, 14, 15, 16, 18, 19, 20, 21, 22, 23], "some": [2, 4, 7, 9, 12, 14, 15, 16, 18, 19, 22, 23], "scf": [2, 7, 15, 23], "scfkin": 2, "scfpot": 2, "mp2": [2, 4, 7, 12, 15, 23], "calcul": [2, 7, 8, 9, 12, 13, 15, 16, 18, 19, 21, 23], "kinet": [2, 7], "contribut": [2, 7, 11, 16, 19, 23], "potenti": [2, 7, 13, 16, 18], "total": [2, 7], "count": 2, "variat": 2, "less": [2, 23], "than": [2, 7, 14, 15, 18, 22, 23], "come": [2, 7, 15, 18, 19, 22, 23], "subfil": [2, 14, 23], "ax": [2, 7], "kwarg": [2, 3, 7], "evolut": [2, 7, 14], "matplotlib": [2, 7, 9], "figur": [2, 7, 15], "argument": [2, 4, 7, 9, 14, 15, 19], "pass": [2, 4, 7, 9, 14, 15, 16, 19, 22], "displai": [2, 7, 22], "mean": [2, 7, 12, 14, 18, 19, 22, 23], "titl": [2, 4, 7, 15], "show": [2, 7, 22], "savefig": [2, 7], "abc": [2, 7, 23], "png": [2, 7], "ep": [2, 7], "save": [2, 7], "size_kwarg": [2, 7], "dictionari": [2, 4, 7, 9, 14, 15, 16, 18, 23], "fig": [2, 7], "set_size_inch": [2, 7], "dict": [2, 4, 7, 9, 15], "w": [2, 7, 22], "h": [2, 7], "4": [2, 4, 7, 12, 13, 15, 19, 20, 21, 22], "tight_layout": [2, 7], "ax_grid": [2, 7], "left": [2, 7], "unchang": [2, 7], "ax_annot": [2, 7], "label": [2, 7], "subplot": [2, 7], "fig_clos": [2, 7], "lattice_vector": 2, "lattice_gradi": 2, "shape": [2, 7], "nstep": 2, "natom": [2, 7], "each": [2, 7, 9, 13, 14, 15, 18, 19, 22, 23], "perform": [2, 6, 7, 9, 12, 13, 14, 15, 16, 18, 19, 22, 23], "riper": [2, 7, 12, 23], "vector": [2, 7], "size": [2, 7, 15, 23], "dimension": [2, 12, 13], "one": [2, 3, 4, 7, 8, 9, 13, 14, 15, 16, 18, 19, 22, 23], "note": [2, 7, 9, 12, 13, 14, 15, 18, 19, 21, 23], "either": [2, 18, 19, 22], "differ": [2, 3, 7, 8, 9, 13, 14, 15, 16, 18, 19, 20, 22, 23], "One": [2, 7], "thu": [2, 15, 16, 18, 19, 20, 22, 23], "gradlatt": 2, "maximum": [2, 4, 7, 15], "largest": 2, "map": 2, "handl": [2, 4, 7, 12, 18], "integ": [2, 4], "fraction": [2, 7, 19], "presenc": [2, 14, 19], "same": [2, 3, 7, 13, 14, 18, 19, 22, 23], "multipl": [2, 7, 15, 19], "tupl": [2, 7, 8, 9, 13], "irrep_index": [2, 7], "occupi": [2, 7, 14, 23], "json": [2, 3, 7, 8, 9, 15, 18, 19, 21], "serializ": [2, 7], "represent": [2, 7, 14, 23], "d": [2, 7, 19, 22], "serial": [2, 12, 18, 19], "valueerror": [2, 7], "exampl": [2, 7, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "a1": [2, 7, 15], "b1": [2, 7], "b2": [2, 7], "irreduc": [2, 7, 14, 23], "electron": [2, 7, 15, 22], "data_group": [2, 14], "data_block": [2, 14], "backup_fil": 2, "comment": [2, 3, 14, 15, 17], "dollar": [2, 14], "sign": [2, 14, 22], "automat": [2, 7, 12, 13, 14, 16, 17, 19, 22], "block": [2, 14], "correspond": [2, 7, 8, 13, 14, 16, 18, 19, 20, 22], "back": [2, 9, 19, 23], "up": [2, 14, 15, 18, 19], "backup": 2, "replac": [2, 14, 19], "equival": [2, 3, 7, 9, 14, 18, 19, 22], "To": [2, 14, 19, 20, 22], "explicit": [2, 9, 14, 19], "simpli": [2, 7, 14, 16, 18], "control_dir": 2, "its": [2, 4, 7, 8, 13, 14, 15, 16, 19, 22, 23], "anoth": [2, 14, 19], "doe": [2, 14, 15, 22, 23], "directori": [2, 4, 7, 9, 14, 15, 19], "dir": 2, "strict": [2, 14, 19], "exact": [2, 14, 18, 22], "match": [2, 6, 7, 14, 19], "start": [2, 7, 14, 15, 16, 18, 19, 20, 21, 22], "modifi": [2, 7, 15, 16, 18, 19, 20, 21, 22], "sever": [2, 7, 18, 19, 21, 23], "updat": [2, 4, 7, 12, 14, 15, 18, 19, 20, 22], "accord": [2, 4, 7, 14, 15, 16, 17, 22], "option_name1": 2, "option_valu": 2, "option_name2": 2, "identifi": [2, 7, 9, 14, 16, 19, 20, 22], "entir": [2, 14, 18, 19, 22], "sinc": [2, 9, 14, 15, 16, 17, 18, 19, 23], "wai": [2, 4, 7, 14, 15, 16, 18, 19, 21, 22, 23], "attempt": [2, 22], "made": [2, 18, 22], "suitabl": [2, 7, 16, 17, 18, 19], "respons": [2, 14, 15, 16, 22], "caller": 2, "safer": 2, "chang": [2, 4, 7, 8, 13, 14, 17, 18, 20, 21, 22], "show_from_subfil": [2, 14], "raise_if_multiple_subfil": 2, "raise_if_missing_subfil": 2, "raise_if_regular_and_subfil": 2, "full": [2, 7, 9, 14, 15, 16, 21, 22], "just": [2, 14, 15, 18, 23], "so": [2, 14, 15, 16, 18, 19, 21, 22, 23], "correctli": [2, 18, 19], "within": [2, 7, 9, 15, 22], "suppos": 2, "whether": [2, 7, 9, 19, 22], "error": [2, 4, 7, 9, 14, 15, 16, 19], "standard": [2, 4, 7, 14, 15, 17, 22], "refer": [2, 3, 8, 9, 12, 13, 14, 16, 18, 19, 22], "regular": [2, 18, 23], "select": [2, 7, 14, 15], "found": [2, 4, 7, 9, 14, 17, 18, 19, 21, 22, 23], "includ": [2, 7, 14, 16, 21, 22], "anyth": [2, 22], "after": [2, 7, 14, 15, 16, 18, 19, 22], "symbol": [2, 7, 13, 14], "like": [2, 4, 7, 8, 9, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23], "queri": 2, "model": [2, 22], "manipul": 2, "convent": [2, 13, 14, 16, 17, 19], "fashion": [2, 22], "mani": 2, "human": 2, "readabl": [2, 22], "ascii": 2, "formal": 2, "split": [2, 3, 7, 14], "optim": [2, 7, 13, 14], "associ": [2, 7, 22, 23], "word": [2, 14], "veri": [2, 16, 18, 19], "larg": [2, 15], "molecular": [2, 4, 7, 15], "orbit": [2, 4, 7, 15, 23], "scfmo": [2, 23], "mo": [2, 7, 15], "complet": [2, 4, 7, 13, 14, 15, 16, 23], "descript": [2, 7, 16, 19, 23], "user": [2, 3, 8, 13, 14, 15, 16, 17, 18, 22, 23], "": [2, 7, 16, 18, 21, 22], "manual": [2, 15], "avail": [2, 4, 7, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23], "unnecessari": [2, 22], "space": [2, 3, 7, 14], "kept": [2, 18, 19], "appli": [2, 12, 14, 15, 19, 22], "interfer": 2, "actual": [2, 7, 9, 15, 19, 22], "alwai": [2, 4, 7, 9, 13, 14, 16, 18, 19], "first": [2, 3, 4, 7, 9, 12, 14, 16, 18, 19, 22, 23], "move": [2, 14, 19], "befor": [2, 4, 7, 9, 14, 15, 16, 18, 19, 21, 23], "ignored_dg": 2, "return_all_diff": 2, "asid": [2, 19], "two": [2, 3, 7, 9, 15, 19, 22], "chunk": [2, 7], "exactli": [2, 6, 18, 19], "except": [2, 3, 4, 6, 7, 9, 14, 15, 17, 19, 22], "thei": [2, 4, 7, 9, 13, 14, 17, 18, 19, 21, 22, 23], "lower": [2, 7, 19, 23], "toler": [2, 7, 9, 15, 18, 19], "otherwis": [2, 4, 7, 15, 18, 19, 22], "messag": [2, 4, 7, 9], "caus": [2, 22], "fail": [2, 3, 4, 7, 8, 9, 15, 16, 19, 22, 23], "varieti": [2, 15], "notat": [2, 7], "intend": [2, 19, 22], "more": [2, 13, 14, 16, 17, 18, 19, 21, 22, 23], "purpos": [2, 22], "rather": 2, "tool": [2, 4, 16, 19, 21, 22], "guarante": [2, 22], "even": [2, 4, 7, 9, 15, 16, 19, 22], "comparison": [2, 3, 9, 19], "expect": [2, 4, 6, 7, 9, 12, 15, 16, 19, 22], "skip": [2, 4, 9, 16], "result": [2, 7, 13, 14, 15, 19, 22, 23], "occurr": [2, 7], "coexist": 2, "shown": [2, 14, 19], "anywai": [2, 15, 19], "cleanup_typ": 2, "clean": [2, 12, 14], "everyth": [2, 14], "blank": [2, 14], "tab": [2, 14], "typic": [2, 14, 15, 22], "cleanup": [2, 3], "valid": [2, 4, 7, 14, 21, 22], "before_first_dollar": 2, "blank_lin": 2, "leading_spaces_dollar": 2, "leading_spaces_hash": 2, "four": 2, "hash": 2, "preced": [2, 7], "charact": 2, "dg1": [2, 3], "dg2": [2, 3], "second": [2, 3, 7, 15, 19, 23], "comment_typ": 2, "inform": [2, 4, 7, 11, 12, 13, 18, 19, 22, 23], "three": [2, 7, 15, 22, 23], "dummi": [2, 14], "span": 2, "inlin": [2, 14], "newlin": 2, "hash_start": 2, "after_end": 2, "hash_inlin": 2, "without": [2, 4, 8, 12, 13, 14, 18, 19, 22], "dg_to_remov": 2, "duplic": 2, "usag": 2, "follow": [2, 4, 7, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "remove_comment_typ": 2, "five": 2, "incorrectli": 2, "respect": [2, 7, 14, 19, 22, 23], "redund": [2, 13, 18], "off": [2, 7, 16], "global": [2, 19], "statu": [2, 13, 22], "weight": 2, "bond": [2, 3, 13], "bend": [2, 13], "k": [2, 13, 19], "involv": [2, 18], "linear": 2, "consid": [2, 4, 7, 14, 15, 16, 18, 19, 22, 23], "length": [2, 7], "collinear": 2, "linc": 2, "dihedr": 2, "tor": [2, 13], "stre": [2, 13], "definit": [2, 7, 9, 12, 13, 15, 19, 22], "establish": 2, "notimpl": 2, "concret": 2, "subclass": [2, 7, 9, 13, 14, 15, 16, 18, 19, 23], "intdef": [2, 3, 13], "static": [2, 6], "appropri": [2, 18, 19, 22], "0001": [2, 9], "check": [2, 3, 4, 6, 7, 9, 12, 14, 15, 16, 18, 19, 23], "posit": [2, 7], "index": [2, 7, 21, 23], "prepend": [2, 14], "insid": [2, 9, 15, 16, 18, 19, 22], "invers": 2, "invr": 2, "int_def": [2, 13], "user_defined_bond": [2, 13], "about": [2, 7, 11, 13, 15, 16, 18, 19, 21, 22, 23], "geometri": [2, 4, 7, 13, 14, 15, 23], "dynam": [2, 13, 15, 22], "while": [2, 13, 14, 15, 16, 18, 19], "constraint": [2, 18], "attribut": [2, 9, 13, 14, 15, 16, 18, 19, 22, 23], "notabl": 2, "inconsist": 2, "obtain": [2, 7, 8, 14, 18, 23], "order": [2, 3, 6, 7, 15, 16, 19, 22, 23], "index1": [2, 13], "index2": [2, 13], "where": [2, 4, 7, 13, 14, 15, 16, 18, 19, 22, 23], "atom1": [2, 13], "atom2": [2, 13], "vertex": [2, 13], "add_user_def_bond": 2, "simpl": [2, 7, 15], "produc": [2, 7, 9, 13, 15, 16, 19, 22, 23], "those": [2, 8, 13, 15, 18, 19, 22], "atom3": 2, "atom4": 2, "third": [2, 22], "fourth": 2, "overwrit": [2, 8, 18, 19], "atol": [2, 9], "ltol": 2, "whose": [2, 14, 17, 22], "bohr": [2, 13], "degre": 2, "out": [2, 7, 15, 22, 23], "plane": [2, 7], "outp": 2, "linp": 2, "miscellan": 2, "quit": [2, 4], "send": [2, 15, 16], "qq": [2, 15], "version": [2, 7, 9, 11, 12, 14, 17, 18, 21, 22, 23], "basic": [2, 7, 14, 17, 19, 22, 23], "exit": 2, "begin": [2, 14], "testdir": [3, 8], "instanti": [3, 18, 23], "mark": [3, 14, 18, 19, 22], "parametr": 3, "arg": 3, "control_filenam": 3, "control_test": 3, "control_filepath": 3, "variabl": [3, 4, 13], "repetit": 3, "white": 3, "import": [3, 9, 13, 14, 15, 17, 19, 22, 23], "param": 3, "molecule_filenam": 3, "ch4": 3, "molecule_filepath": 3, "to_test": 3, "ref": [3, 19], "helper": [3, 8, 13, 16, 18, 19, 23], "treat": [3, 7, 22], "them": [3, 4, 7, 13, 14, 16, 18, 19, 21, 22, 23], "approx": 3, "intedef": 3, "assum": [3, 19, 22], "val": [3, 13], "through": [3, 4, 8, 13, 14, 15, 16, 22, 23], "assert": [3, 9, 22], "properli": [3, 4], "sort": [3, 7, 23], "structure_filepath": 3, "testdefinerunn": [4, 6], "assert_sendline_cal": [4, 6], "assert_sendline_has_cal": [4, 6], "test_add_atomic_coordinates_from_fil": [4, 6], "test_add_atomic_coordinates_from_file_cartesian": [4, 6], "test_copy_mo_files_ab_mo": [4, 6], "test_copy_mo_files_alpha_beta": [4, 6], "test_copy_mo_files_error": [4, 6], "test_copy_mo_files_mo": [4, 6], "test_define_basis_set": [4, 6], "test_define_core_potenti": [4, 6], "test_define_symmetri": [4, 6], "test_define_symmetry_error": [4, 6], "test_determine_symmetri": [4, 6], "test_determine_symmetry_ep": [4, 6], "test_dump_command_fil": [4, 6], "test_excited_state_menu_error_not_activ": [4, 6], "test_excited_state_menu_frequ": [4, 6], "test_excited_state_menu_irrep": [4, 6], "test_excited_state_menu_irrep_wrong_sym": [4, 6], "test_excited_state_menu_polli": [4, 6], "test_excited_state_menu_rpa": [4, 6], "test_excited_state_menu_urpa": [4, 6], "test_excited_state_menu_urpa_error": [4, 6], "test_excited_state_menu_wrong_ex_method": [4, 6], "test_excited_state_menu_wrong_menu": [4, 6], "test_existing_coordin": [4, 6], "test_existing_coordinates_cartesian": [4, 6], "test_existing_coordinates_error": [4, 6], "test_existing_coordinates_no_upd": [4, 6], "test_existing_coordinates_unsupport": [4, 6], "test_expect": [4, 6], "test_expect_raise_eof": [4, 6], "test_expect_raise_timeout": [4, 6], "test_extended_hueckel_theory_menu_charg": [4, 6], "test_extended_hueckel_theory_menu_default": [4, 6], "test_extended_hueckel_theory_menu_error": [4, 6], "test_extended_hueckel_theory_menu_nocharg": [4, 6], "test_extended_hueckel_theory_menu_unpair": [4, 6], "test_general_menu_ccsdt": [4, 6], "test_general_menu_dft": [4, 6], "test_general_menu_hf": [4, 6], "test_general_menu_wrong_method": [4, 6], "test_generate_internal_coordin": [4, 6], "test_generate_internal_coordinates_error": [4, 6], "test_geometry_menu_copymo": [4, 6], "test_geometry_menu_incompatibility_1": [4, 6], "test_geometry_menu_incompatibility_2": [4, 6], "test_geometry_menu_new_coords_1": [4, 6], "test_geometry_menu_new_coords_2": [4, 6], "test_geometry_menu_new_coords_3": [4, 6], "test_geometry_menu_new_coords_4": [4, 6], "test_geometry_menu_no_new_coord": [4, 6], "test_get_bin_path": [4, 6], "test_go_to_general_menu": [4, 6], "test_init": [4, 6], "test_initialize_control_1": [4, 6], "test_initialize_control_2": [4, 6], "test_initialize_control_incompat": [4, 6], "test_is_al": [4, 6], "test_postprocess": [4, 6], "test_quit_general_menu": [4, 6], "test_run_full_1": [4, 6], "test_run_full_2": [4, 6], "test_run_generate_mo_fil": [4, 6], "test_run_generate_mo_files_sym": [4, 6], "test_run_update_internal_coord": [4, 6], "test_run_update_internal_coords_error": [4, 6], "test_sendlin": [4, 6], "test_set_basi": [4, 6], "test_set_basis_error": [4, 6], "test_set_basis_error_2": [4, 6], "test_set_basis_error_3": [4, 6], "test_set_dft_options_no_dft": [4, 6], "test_set_dft_options_use_dft": [4, 6], "test_set_dft_options_wrong_xc": [4, 6], "test_set_ecp_error": [4, 6], "test_set_ecp_error_2": [4, 6], "test_set_ecp_error_3": [4, 6], "test_set_metr": [4, 6], "test_set_mo_from_control_fil": [4, 6], "test_set_mo_from_control_file_2": [4, 6], "test_set_mo_from_control_file_error": [4, 6], "test_set_mo_from_control_file_longpath": [4, 6], "test_set_mp2_opt": [4, 6], "test_set_mp2_options_f12": [4, 6], "test_set_mp2_options_geoopt": [4, 6], "test_set_mp2_options_mp2": [4, 6], "test_set_mp2_options_mp2_error": [4, 6], "test_set_ri_st": [4, 6], "test_set_ri_state_marij": [4, 6], "test_set_scf_opt": [4, 6], "test_skip_atomic_attribute_menu": [4, 6], "test_skip_atomic_attribute_menu_error": [4, 6], "test_skip_atomic_attribute_menu_intern": [4, 6], "test_switch_to_atomic_attribute_menu": [4, 6], "test_switch_to_atomic_attribute_menu_intern": [4, 6], "test_switch_to_atomic_attribute_menu_internal_error": [4, 6], "test_switch_to_molecular_orbital_definition_menu": [4, 6], "test_switch_to_scf_menu": [4, 6], "testexcept": [4, 6], "test_creat": [4, 6], "dr_data": [4, 6, 16], "test_get_define_templ": [4, 6], "test_validate_paramet": [4, 6], "pattern": [4, 15, 22], "go": [4, 15, 19], "timeout": [4, 15], "eof": 4, "problem": [4, 7, 9, 11, 15, 16, 18, 22], "incomplet": 4, "ir": [4, 7, 13, 15], "happen": [4, 14, 15, 16, 18, 19], "incompat": [4, 17, 19, 20, 22], "among": [4, 7, 14, 15, 19, 22], "previou": [4, 7, 12, 15, 18, 19, 22, 23], "60": [4, 15, 22], "log_filepath": 4, "log": [4, 12, 20, 21], "workdir": 4, "use_popen": 4, "pexpect": [4, 15], "commun": [4, 18, 22], "avoid": [4, 7, 14, 16, 19, 22], "side": [4, 14, 19, 23], "effect": [4, 14, 19, 22], "dure": [4, 13, 14, 18], "wait": 4, "search": [4, 7, 21], "environ": [4, 11, 19], "popen_spawn": 4, "popenspawn": 4, "popen": 4, "spawn": [4, 15, 16], "pty": 4, "define_command": 4, "dump": [4, 7], "command": [4, 6, 7, 9, 14, 15, 16, 19, 22], "behavior": [4, 14, 16, 19], "menu": [4, 15, 16, 22], "job": [4, 7, 9, 15], "reach": 4, "being": [4, 7, 14, 15, 19, 22], "normal": [4, 7, 22, 23], "abnorm": [4, 15], "regener": [4, 9, 12, 15, 19, 22], "must": [4, 22], "usemo": [4, 15], "taken": [4, 9, 19, 21], "scratch": 4, "extend": [4, 15, 22], "hueckel": [4, 15], "guess": [4, 15], "edit": 4, "least": [4, 6, 16, 18, 19, 22], "enabl": [4, 15, 21, 22], "enter": [4, 22], "sym": [4, 15], "desi": [4, 15], "notic": [4, 7, 12, 13, 19, 22], "disabl": [4, 15], "termin": [4, 15, 22], "similar": [4, 14, 18, 22, 23], "afterward": [4, 13, 15], "were": [4, 6, 7, 14, 19, 22], "successfulli": [4, 9], "unexpect": 4, "proper": [4, 7], "ha": [4, 7, 8, 12, 13, 14, 15, 16, 18, 19, 22, 23], "do": [4, 9, 16, 17, 18, 21, 22], "schema": [4, 15, 16], "excit": [4, 7, 15], "cerberu": [4, 15, 16], "yaml": [4, 15, 19], "nullabl": [4, 16], "basis_atom": [4, 15], "keysrul": 4, "valuesrul": 4, "use_cosmo": [4, 15], "coord_fil": [4, 15], "copymo": [4, 15], "boolean": [4, 7, 19], "desy_ep": [4, 15], "min": 4, "ecp_atom": 4, "ex_all_st": [4, 15], "default_sett": 4, "local": [4, 22], "setter": 4, "ex_method": [4, 15], "ex_multi": [4, 15], "ex_exopt": [4, 15], "ex_frequ": [4, 15], "ex_frequency_unit": [4, 15], "ex_irrep_st": [4, 15], "rpa": [4, 7, 15], "ci": [4, 15], "dynpol": [4, 15], "polli": [4, 15], "singlet": [4, 7, 15], "doublet": [4, 15], "triplet": [4, 15], "ex_mp2": [4, 15], "gridsiz": [4, 14, 15], "marij": [4, 7, 15], "oneof": 4, "rijk": [4, 15], "ri": [4, 7, 15, 23], "maxcor": [4, 15], "adc": [4, 15], "ccsd": [4, 15], "t": [4, 15], "ccsdt": [4, 15], "maxit": [4, 15], "hf": [4, 15], "mp2energi": [4, 15], "scfconv": [4, 14, 15], "max": [4, 7], "9": [4, 15, 22], "scfiterlimit": [4, 14, 15], "200": 4, "sym_ep": [4, 15], "unpaired_electron": [4, 15], "use_f12": [4, 15], "experiment": [4, 12, 13, 15, 16], "featur": [4, 11, 13, 15, 16, 17, 19, 20, 21, 22], "unit": [6, 13, 15, 16, 17, 18, 21], "mainli": [6, 13, 15, 17, 18, 19, 23], "mock": [6, 16, 19], "sendline_mock": 6, "sendlin": 6, "els": 6, "assert_has_cal": 6, "mo_dirpath": [6, 8], "request": [6, 7, 8, 11], "test_aoforcevibrationaldata": [7, 8], "test_scfiterationdata": [7, 8], "test_str": [7, 8], "test_properti": [7, 8], "cls_dict_path": [7, 8, 18], "generate_fil": [7, 8, 18], "testfunct": [7, 8], "test_convert_float": [7, 8], "test_convert_int": [7, 8], "test_convert_time_str": [7, 8], "testpars": [7, 8], "test_fail_all_done_check": [7, 8], "test_get_split_jobex_pars": [7, 8], "test_get_valu": [7, 8], "test_grep_lin": [7, 8], "parser_and_dict": [7, 8], "test_eiger_runn": [7, 8], "test_error_homo": [7, 8], "test_hol": [7, 8], "test_no_empty_st": [7, 8], "test_parsing_failur": [7, 8], "stdout": [7, 9, 19, 23], "reli": [7, 16, 17, 18, 19, 22, 23], "core_memory_dft": 7, "memory_per_atom": 7, "atoms_per_loop": 7, "construction_tim": 7, "numer": [7, 9, 14, 18, 19, 23], "aoforc": [7, 12, 19, 23], "Will": [7, 9], "numforc": 7, "remain": [7, 14, 22], "memori": [7, 15], "mb": 7, "need": [7, 14, 15, 16, 18, 19, 22, 23], "kb": 7, "loop": 7, "timing_descript": 7, "cpu_tim": 7, "wall_tim": 7, "cpu": 7, "wall": 7, "intens": 7, "m": [7, 13, 19], "dipole_mo": 7, "analysi": [7, 19, 23], "rotat": [7, 23], "constant": 7, "cm": 7, "optic": 7, "u": [7, 13, 18, 19], "3x3": 7, "dipol": [7, 23], "moment": [7, 15, 16, 23], "principl": [7, 17, 19], "axi": 7, "frequenc": [7, 15], "ddip_dq": 7, "intensities_perc": 7, "raman": 7, "eigenvector": [7, 19], "reduced_mass": 7, "vibrat": [7, 23], "mode": [7, 19, 22], "deriv": 7, "km": 7, "mol": 7, "percentag": 7, "num": 7, "reduc": [7, 14], "mass": [7, 23], "zpve": 7, "panda": 7, "datafram": 7, "neg": 7, "satisfi": [7, 22], "condit": [7, 18, 19, 22], "ab": 7, "zero": 7, "relev": [7, 14, 18, 19, 21, 22, 23], "basis_per_speci": 7, "aux_basis_per_speci": 7, "number_scf_basis_func": 7, "number_scf_aux_basis_func": 7, "most": [7, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "escf": [7, 12, 18, 23], "speci": 7, "auxiliari": [7, 9], "auxialiari": 7, "info": 7, "screening_charg": 7, "element_radiu": 7, "area": [7, 22], "volum": [7, 22], "nsph": 7, "npspher": 7, "disex2": 7, "phsran": 7, "ampran": 7, "refind": 7, "fepsi": 7, "dielectr": 7, "total_energi": [7, 23], "total_energy_oc_corr": 7, "dielectric_energi": 7, "dielectric_energy_oc_corr": 7, "radiu": 7, "site": 7, "egrad": [7, 12, 23], "spherical_grids": 7, "gridpoint": 7, "exchang": [7, 19, 23], "correl": [7, 19, 23], "spheric": 7, "en_corr": 7, "paser": 7, "unrestricted_electron": 7, "dipole_vector": 7, "dipole_norm": 7, "quadrupole_tensor": 7, "quadrupole_trac": 7, "quadrupole_anisotropi": 7, "electrostat": [7, 23], "quadrupol": [7, 23], "unrestrict": 7, "compon": [7, 19, 22], "tensor": 7, "trace": 7, "anisotropi": 7, "calc_typ": 7, "iter": [7, 15, 23], "residuum_convergence_criterium": 7, "n_occupied_orbit": 7, "orbital_character": 7, "max_davidson_it": 7, "machine_precis": 7, "max_core_mem": 7, "max_cao_basis_vector": 7, "max_treated_vector": 7, "irrep_data": 7, "gs_tot_en": 7, "residuum": 7, "converg": [7, 12, 23], "criterium": 7, "how": [7, 16, 18, 19, 21, 22, 23], "davidson": 7, "machin": [7, 19, 22], "precis": [7, 13, 22], "cao": 7, "simultan": [7, 22], "degeneraci": 7, "dimens": 7, "ground": 7, "detail": [7, 17, 18, 19, 21, 22, 23], "sublist": 7, "convern": 7, "dealt": 7, "inner": 7, "euclidean": 7, "residu": 7, "msg": 7, "func_typ": 7, "xcfun": 7, "relax": [7, 12, 23], "concern": [7, 16, 17, 18, 22], "xc": 7, "gga": 7, "lda": 7, "center_of_mass": 7, "center_of_charg": 7, "integral_neglect_threshold": 7, "thize": [7, 14], "thime": [7, 14], "gradien": 7, "neglect": 7, "storag": [7, 22], "energy_onli": 7, "lattice_param": 7, "shortest_interatomic_dist": 7, "direct_space_vector": 7, "reciprocal_space_vector": 7, "shortest": 7, "interatom": 7, "align": 7, "x": [7, 9, 19, 20, 21], "xy": 7, "reciproc": 7, "pi": 7, "v": 7, "a2": 7, "a3": 7, "b3": 7, "crystallograph": 7, "recov": 7, "energy_chang": 7, "rms_displ": 7, "max_displ": 7, "rms_grad": 7, "max_grad": 7, "final": [7, 14, 17, 18, 22, 23], "what": [7, 18, 19, 22], "statpt": [7, 12, 18, 23], "thr": 7, "conv": 7, "achiev": [7, 19, 22], "rm": 7, "displac": 7, "thr_int_coord": 7, "criterion": [7, 22], "norm_cartesian": 7, "norm_intern": 7, "max_intern": 7, "stapt": [7, 23], "take": [7, 13, 15, 16, 18, 19, 22, 23], "account": 7, "ricor": 7, "rij_memori": 7, "rik": 7, "ridft": [7, 12, 15, 18, 19, 23], "approxim": [7, 22], "rij": 7, "host": [7, 22], "start_tim": 7, "end_tim": 7, "wa": [7, 15, 22, 23], "datetim": 7, "dii": [7, 23], "diis_error_vect": 7, "conv_tot_en": 7, "conv_one_e_en": 7, "virtual_orbital_shift_on": 7, "virtual_orbital_shift_limit": 7, "restart_fil": 7, "oper": [7, 14, 16, 22, 23], "switch": [7, 19], "increment": [7, 20], "virtual": [7, 23], "shift": [7, 23], "character": [7, 22], "restart": 7, "kinetic_energi": 7, "potential_energi": 7, "virial_theorem": [7, 23], "wavefunction_norm": 7, "coulomb_energi": 7, "xc_energi": 7, "ts_energi": 7, "free_energi": 7, "sigma0_energi": 7, "virial": 7, "theorem": 7, "wavefunct": 7, "coulomb": 7, "entrop": 7, "free": [7, 22], "sigma0": 7, "first_index": 7, "damp": 7, "keep": [7, 14, 16, 19, 22], "wast": [7, 18], "higher": [7, 12, 21, 23], "tot_en": 7, "osc_str": 7, "rot_str": 7, "dominant_contribut": 7, "moments_column": 7, "cannot": [7, 14, 15, 19, 22], "oscil": 7, "strength": 7, "rotatori": 7, "domin": 7, "occ_orb": 7, "virt_orb": 7, "coeff": 7, "coeffici": 7, "electr": 7, "magnet": 7, "column": 7, "electric_dipol": 7, "magnetic_dipol": 7, "electric_quadrupol": 7, "initial_elec_temp": 7, "final_elec_temp": 7, "annealing_factor": 7, "annealing_homo_lumo_gap_limit": 7, "smearing_de_limit": 7, "smear": [7, 23], "temperatur": 7, "anneal": 7, "de": 7, "max_trust_radiu": 7, "min_trust_radiu": 7, "init_trust_radiu": 7, "min_grad_norm_for_gdii": 7, "prev_steps_for_gdii": 7, "hessian_update_method": 7, "thr_energy_chang": 7, "thr_max_displ": 7, "thr_max_grad": 7, "thr_rms_displ": 7, "thr_rms_grad": 7, "use_default": 7, "final_step_radiu": 7, "trust": 7, "minimum": [7, 15], "gdii": 7, "hessian": 7, "n_rep": 7, "rep": 7, "part": [7, 12, 14, 18, 19, 22], "might": [7, 12, 13, 14, 15, 16, 18, 19, 21, 22], "build": [7, 18, 23], "numerical_integr": 7, "aforc": 7, "work": [7, 8, 12, 13, 14, 15, 18, 19, 22], "nativ": 7, "ex_stat": 7, "minim": 7, "rel": [7, 9, 14, 16, 18], "prece": 7, "rdgrad": [7, 23], "jobex": [7, 12, 23], "mpgrad": [7, 12, 23], "ricc2": [7, 12, 15, 23], "pnoccsd": [7, 23], "pno": 7, "program": [7, 9, 12, 17, 22], "yet": [7, 19], "dscf": [7, 12, 15, 19, 23], "main": [7, 16, 18, 19, 21], "portion": [7, 16, 18, 19, 22], "aim": [7, 15, 19, 22], "reusabl": 7, "possibl": [7, 14, 15, 16, 17, 18, 19, 22], "across": [7, 19, 22], "quantiti": [7, 21, 23], "access": [7, 15, 16, 18, 19, 20, 21, 22, 23], "lazi": [7, 18, 23], "section": [7, 15, 16, 17, 18, 19, 22, 23], "crash": 7, "lead": [7, 14, 15, 17, 19], "wrong": 7, "heavili": [7, 16], "regex": 7, "isotop": 7, "activ": [7, 15, 22], "subdictionari": 7, "xf": 7, "functional_msg": 7, "functional_nam": 7, "functional_typ": 7, "chosen": [7, 18], "exopt": [7, 15], "check_all_don": 7, "exec_en": 7, "parser_en": 7, "exec_grad": 7, "parser_grad": 7, "exec_relax": 7, "parser_relax": 7, "text": [7, 18, 21, 23], "find": [7, 22], "th": [7, 15], "callabl": 7, "better": [7, 19], "instead": [7, 9, 13, 14, 16, 18, 19, 22, 23], "nline": 7, "similarli": [7, 23], "grep": 7, "plu": [7, 15, 22], "tm_version": [7, 8], "tm_build": 7, "tm_lattice_param": 7, "pre": [7, 12], "print": [7, 9, 19, 23], "alloc": 7, "exponenti": 7, "11": [7, 21, 22], "23": 7, "123e": 7, "01": [7, 19], "123d": 7, "compos": [7, 23], "asterisk": 7, "fortran": 7, "dai": [7, 22], "hour": 7, "12": [7, 22], "minut": 7, "55": 7, "nelec": 7, "eiger": [7, 23], "ascend": [7, 23], "inddic": 7, "1e": [7, 9], "06": 7, "anot": 7, "data_path": 7, "compat": [7, 18, 19, 21], "mutablesequ": [7, 23], "sequenc": [7, 16], "increas": [7, 14, 15, 21], "eigenst": [7, 23], "subset": [7, 16], "filter": 7, "shortcut": [7, 14], "hole": 7, "allow_fract": 7, "only_occupi": 7, "reorder_irrep_index": 7, "lowest": [7, 23], "fill": [7, 13], "ones": [7, 15, 18, 19], "procedur": [7, 16, 22, 23], "becaus": [7, 18, 22], "equal": [7, 9, 17], "self": [7, 11, 16], "ly": 7, "dg_string": 7, "py": [8, 17, 19, 20], "repeat": [8, 18, 19, 23], "verifi": [8, 14, 15, 19], "implicitli": 8, "target": [8, 16, 18, 19], "extens": [8, 15, 22], "files_list": [8, 18], "pytest": [8, 9, 19], "fixtur": [8, 16, 18, 19], "These": [8, 13, 14, 15, 19, 22, 23], "ensur": [8, 16, 22], "parser_method": [8, 9, 18], "infrastructur": [9, 19], "configur": [9, 19, 20], "10": [9, 15, 22], "dryrun_itest": [9, 19], "baseexcept": 9, "itest": [9, 19], "obj": 9, "test_if_subclass": 9, "tri": 9, "By": [9, 15, 19, 22], "deactiv": 9, "desir": [9, 16], "rtol": 9, "07": 9, "ignored_valu": 9, "err_msg": 9, "verbos": 9, "numpi": 9, "assert_equ": 9, "16": [9, 21, 22], "assertionerror": 9, "requir": [9, 12, 13, 14, 15, 16, 17, 18, 19, 22], "scalar": 9, "arrai": 9, "almost": 9, "conflict": 9, "assert_allclos": 9, "absolut": [9, 15, 19, 22], "still": [9, 13, 14, 18, 19], "though": [9, 15, 18, 19, 22, 23], "failur": [9, 15, 16, 19, 22], "current_level": 9, "nest": 9, "test_definit": 9, "log_fpath": 9, "outdir": 9, "logfil": 9, "struc": 9, "file_nam": 9, "_privat": 9, "expos": 9, "public": [9, 22], "isnan": 9, "typeerror": 9, "rubric": 9, "ufunc": 9, "sometim": 9, "notimplementedtyp": 9, "wrapper": 9, "make": [9, 11, 14, 16, 17, 18, 19, 20, 22], "sure": [9, 14, 16, 22], "onc": [9, 18, 19], "solv": [9, 15], "level": [9, 16, 18, 19, 23], "instal": [9, 19, 22], "define_opt": 9, "coord_filenam": 9, "control_reference_filenam": 9, "file_class": 9, "datagroups_opt": 9, "success": [9, 19], "datagroup_nam": 9, "datagroup_valu": 9, "delet": [9, 19], "changedir": 9, "context": [9, 18, 19, 22], "manag": [9, 18, 19, 21], "temporari": [9, 19], "tempfil": 9, "mkdtemp": 9, "cd": 9, "monti": [9, 18, 21, 23], "o": [9, 11, 13, 19], "preserv": [9, 22], "yield": 9, "touch": 9, "turbomoleio": [10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "you": [11, 13, 14, 15, 16, 18, 19, 20, 22, 23], "patch": [11, 20], "issu": 11, "github": [11, 12], "http": [11, 22], "com": 11, "matgenix": 11, "pleas": [11, 22], "much": [11, 14, 15, 16, 19, 23], "small": [11, 15, 18, 19], "snippet": 11, "reproduc": [11, 14, 19], "your": [11, 15, 16, 18, 19, 22, 23], "python": [11, 12, 13, 14, 17, 19, 20, 21], "document": [12, 16, 17, 19, 20, 22, 23], "commit": [12, 22], "hook": 12, "lint": 12, "workflow": [12, 15, 21], "adapt": [12, 22], "progress": [12, 13], "api": [12, 13, 14, 17, 20, 23], "prior": [12, 13, 19, 22], "preliminari": 12, "rimp2": 12, "reorgan": 12, "script": [12, 14, 19, 22, 23], "offici": [12, 22], "gpl": [12, 22], "v3": 12, "licens": [12, 21], "simul": 13, "howev": [13, 14, 15, 16, 18, 22, 23], "further": [13, 22, 23], "reason": [13, 14, 15, 19, 22], "advantag": [13, 15, 16, 17, 18], "convers": 13, "limit": [13, 14, 15, 19, 22], "capabl": 13, "isol": [13, 18], "see": [13, 15, 16, 17, 19, 22, 23], "below": [13, 14, 18, 19, 22, 23], "exploit": 13, "simplest": [13, 15], "translat": 13, "look": [13, 14, 19, 23], "00000000000000": 13, "17616323936717": 13, "03717448857876": 13, "35232647873438": 13, "complic": [13, 16], "commonli": 13, "we": [13, 14, 15, 16, 18, 19, 22, 23], "stress": 13, "again": [13, 18, 23], "oppos": 13, "Their": [13, 19], "bring": [13, 16], "few": [13, 14, 16, 17, 23], "let": [13, 18], "never": [13, 14], "nor": [13, 22], "As": [13, 14, 15, 18, 19], "subsequ": 14, "lack": 14, "unambigu": 14, "distinct": 14, "superflu": 14, "particular": [14, 15, 16, 18, 19, 20, 22, 23], "appar": 14, "strictli": [14, 17], "mandatori": 14, "under": [14, 18, 19, 22], "offer": [14, 22, 23], "view": [14, 18, 22], "inspir": 14, "distribut": [14, 16, 19, 22], "simplic": 14, "ambigu": 14, "encount": [14, 15], "ask": [14, 22], "intent": [14, 22], "p": [14, 15], "m3": 14, "interest": [14, 22], "dg": 14, "kind": [14, 15, 18, 19, 22, 23], "uniform": 14, "next": [14, 19, 22], "join": 14, "want": [14, 15, 16, 18, 21, 22], "c1": 14, "100": 14, "abov": [14, 15, 18, 19, 22, 23], "lastli": [14, 18, 19, 23], "whole": [14, 15, 18, 19, 22], "connect": [14, 19, 21, 22], "pbe": 14, "design": [14, 18, 19, 21, 22, 23], "besid": 14, "frequent": 14, "over": [14, 19], "best": [14, 16, 19, 22], "attent": 14, "organ": [14, 18, 19, 22, 23], "analys": 14, "divid": [14, 19], "mention": [14, 15, 19], "explicitli": [14, 15, 22], "crucial": 15, "challeng": 15, "autom": 15, "child": 15, "applic": [15, 19, 22], "respond": 15, "complex": 15, "speed": 15, "navig": 15, "histori": [15, 16], "submit": 15, "sent_command": [15, 16], "repli": [15, 16], "brought": 15, "situat": 15, "foreseen": 15, "realli": [15, 19], "low": 15, "too": [15, 22], "120": 15, "good": [15, 16, 18, 19, 23], "compromis": 15, "previous": [15, 19], "interrupt": 15, "help": [15, 17, 19], "predefin": 15, "prepar": [15, 19], "dp": 15, "dr": 15, "prepapar": 15, "Of": [15, 22], "cours": [15, 19, 22], "tune": [15, 19], "proceed": 15, "retriev": 15, "cover": [15, 19, 22], "everi": [15, 22], "scenario": 15, "focus": [15, 23], "keywork": 15, "overrid": [15, 19], "forc": [15, 22], "sy": 15, "distinguish": [15, 22], "ciss": 15, "rpat": 15, "cist": 15, "outcom": [15, 19], "eht": 15, "uht": 15, "larger": [15, 22], "num_exc_st": 15, "multiplicity_int": 15, "exci": 15, "nexc": 15, "polaris": 15, "589": 15, "nm": 15, "enforc": [15, 17, 22], "treatment": 15, "geoopt": 15, "def2": 15, "sv": 15, "specic": 15, "unpair": 15, "f12": 15, "ccsdapprox": 15, "rir12": 15, "accuraci": 15, "rang": 15, "cosmo_out": 15, "paramat": 15, "At": [15, 23], "prevent": [15, 19, 22], "typo": 15, "altern": [15, 16, 22], "define_parameters_valid": 15, "Being": [15, 16], "bit": 15, "care": [15, 18, 19, 21], "certain": [15, 22], "probabl": [15, 16, 18, 23], "guid": [16, 17, 18, 19, 23], "briefli": 16, "discuss": [16, 18, 19], "aspect": [16, 17], "rememb": [16, 18], "trivial": [16, 19], "prone": 16, "littl": [16, 19], "wish": [16, 19, 22, 23], "explor": 16, "plan": [16, 19], "protect": [16, 22], "_": 16, "right": [16, 22], "turn": 16, "introduc": [16, 18, 19], "carefulli": [16, 18, 19, 21], "There": 16, "mind": [16, 18], "advanc": [16, 21], "_sendlin": 16, "_expect": 16, "track": 16, "receiv": [16, 22], "known": 16, "intercept": 16, "signal": 16, "disrupt": 16, "flow": [16, 22], "run_": 16, "share": [16, 18, 22], "idea": [16, 22, 23], "mimic": 16, "reus": 16, "develop": [16, 17, 18, 19, 22, 23], "natur": [16, 18, 21, 22], "variou": [16, 23], "explan": [16, 17, 18], "hoc": 16, "interconnected": 16, "introduct": [16, 19], "succe": 16, "against": [16, 22], "real": 16, "welcom": [16, 22], "improv": 16, "power": [16, 22], "place": [16, 19, 22, 23], "learn": 16, "dependeci": 16, "With": 17, "nonetheless": 17, "compli": [17, 22], "guidelin": 17, "greater": 17, "8": [17, 21, 22], "understand": [17, 19, 23], "orient": 17, "inherit": 17, "often": [17, 19], "pep": 17, "style": 17, "although": [17, 22, 23], "deviat": 17, "advis": [17, 21, 22], "stick": [17, 19], "essenti": [17, 19, 22], "futur": [17, 22], "googl": 17, "docstr": 17, "docs_rst": 17, "typeset": 17, "restructuredtext": 17, "html": [17, 19, 22], "sphinx": 17, "doc": [17, 20], "rst": 17, "invok": 17, "task": 17, "remark": 17, "strongli": 17, "discourag": [17, 19], "backward": [17, 18, 19, 21], "clear": [17, 22], "clearli": [17, 22], "highlight": 17, "possibli": [17, 19, 23], "agre": [17, 18, 22], "maintain": [17, 22], "explain": [18, 19, 22], "depth": 18, "inspect": [18, 19], "meant": 18, "lazy_properti": 18, "mix": 18, "temporarili": 18, "dispos": 18, "narrow": 18, "down": [18, 21], "abl": 18, "togeth": [18, 23], "On": 18, "hand": 18, "prefer": [18, 22, 23], "approach": [18, 23], "quickli": 18, "he": 18, "rest": [18, 23], "impact": 18, "proce": [18, 19], "bottom": 18, "express": [18, 22, 23], "focu": [18, 23], "analyz": [18, 19], "consider": 18, "appear": 18, "disappear": 18, "latter": 18, "newli": 18, "__init__": [18, 20], "deseri": 18, "old": [18, 19], "anymor": 18, "upon": 18, "manner": [18, 20, 22, 23], "address": [18, 22], "encapsul": 18, "recommend": 18, "hold": 18, "exec_to_out_obj": 18, "decid": [18, 22], "mayb": 18, "extrem": [18, 19], "becom": 18, "bug": [18, 19, 20, 21], "partial": 18, "loos": 18, "warn": 18, "deal": [18, 23], "process": 19, "meet": [19, 22], "behav": 19, "exhaust": 19, "beyond": [19, 22], "scope": [19, 22], "somewhat": 19, "arbitrari": 19, "own": [19, 22], "reintroduc": 19, "later": [19, 22], "wide": [19, 22], "custom": [19, 22], "coverag": [19, 22], "cov": 19, "sum": 19, "easiest": 19, "pip": 19, "mongomock": 19, "runtest": 19, "sh": 19, "project": 19, "report": [19, 21], "coverage_html": 19, "coveragerc_unit": 19, "coveragerc_integr": 19, "subfold": 19, "creation": 19, "toward": 19, "high": 19, "rate": 19, "alon": [19, 23], "99": 19, "tm_v7": 19, "additionn": 19, "necessari": [19, 22], "integrations_test": 19, "exclud": [19, 22], "outright": 19, "obvious": 19, "meaningless": 19, "date": [19, 22], "elaps": 19, "chemic": 19, "slightli": [19, 20], "impract": 19, "meaning": 19, "acoust": 19, "vari": 19, "inde": 19, "cumbersom": 19, "inevit": 19, "underli": 19, "renam": 19, "altogeth": 19, "now": 19, "releas": [19, 20, 21, 22], "light": 19, "looser": 19, "tolear": 19, "wise": 19, "test_dscf": 19, "test_run_dscf_hf": 19, "trigger": 19, "imposs": 19, "wrongli": 19, "systemat": [19, 22, 23], "short": [19, 22], "enough": [19, 23], "comput": [19, 22], "resourc": 19, "gain": 19, "89": 19, "test_": 19, "discov": 19, "experi": 19, "unittest": 19, "testcas": 19, "onlin": 19, "practic": [19, 22], "whenev": 19, "tmpdir": 19, "why": [19, 22], "conftest": 19, "eas": [19, 20], "itself": [19, 22], "benzen": 19, "benzene_myxc": 19, "hereaft": [19, 22], "testgen": 19, "testexec": 19, "testnam": 19, "excerpt": 19, "tree": 19, "aceton_ful": 19, "h2_numforc": 19, "aceton_dftd3_tzvp": 19, "h2o_std": 19, "h2o_uhf": 19, "nh3_cosmo_fermi": 19, "nh3_dftd1": 19, "tests_config": 19, "generate_output_fil": 19, "generate_control": 19, "tm_vx": 19, "y": [19, 20], "z": 19, "v7": 19, "thing": [19, 22], "action": [19, 22], "fulli": 19, "due": 19, "critic": 19, "measur": [19, 22], "dev_script": 19, "parsing_update_differ": 19, "dry": 19, "minor": [19, 20], "occur": [19, 22], "fpath": 19, "aris": [19, 22], "newest": 19, "older": [19, 20], "safe": 19, "transit": 19, "facilit": 19, "know": [19, 22], "adopt": [20, 22], "semant": 20, "major": [20, 22], "__version__": 20, "conf": 20, "latest": 20, "librari": [21, 22], "summar": 21, "mongodb": 21, "databas": 21, "firework": 21, "quick": 21, "overal": 21, "appendix": 21, "runner": 21, "suit": 21, "changelog": 21, "feb": 21, "24": 21, "2022": 21, "15": [21, 22], "sep": 21, "20": [21, 22], "2021": 21, "mar": 21, "page": 21, "softwar": 22, "redistribut": 22, "term": 22, "gnu": 22, "publish": 22, "foundat": 22, "hope": 22, "warranti": 22, "impli": 22, "merchant": 22, "fit": 22, "FOR": 22, "29": 22, "june": 22, "2007": 22, "copyright": 22, "inc": 22, "fsf": 22, "org": 22, "everyon": 22, "permit": 22, "verbatim": 22, "preambl": 22, "copyleft": 22, "awai": 22, "freedom": 22, "contrast": 22, "our": 22, "author": 22, "speak": 22, "price": 22, "piec": [22, 23], "deni": 22, "surrend": 22, "therefor": 22, "grati": 22, "fee": 22, "recipi": 22, "And": 22, "legal": 22, "permiss": 22, "sake": 22, "erron": 22, "devic": 22, "manufactur": 22, "fundament": 22, "abus": 22, "product": 22, "individu": 22, "unaccept": 22, "prohibit": 22, "substanti": 22, "domain": 22, "stand": 22, "readi": 22, "provis": 22, "threaten": 22, "constantli": 22, "patent": 22, "restrict": 22, "special": 22, "danger": 22, "proprietari": 22, "assur": 22, "render": 22, "AND": 22, "law": 22, "semiconductor": 22, "mask": 22, "license": 22, "earlier": 22, "unmodifi": 22, "propag": 22, "secondarili": 22, "liabl": 22, "infring": 22, "privat": 22, "countri": 22, "convei": 22, "parti": 22, "mere": 22, "network": 22, "transfer": 22, "extent": 22, "conveni": 22, "promin": 22, "visibl": 22, "tell": 22, "item": 22, "recogn": 22, "bodi": 22, "languag": 22, "serv": 22, "kernel": 22, "window": 22, "compil": 22, "interpret": 22, "link": [22, 23], "subprogram": 22, "intim": 22, "grant": 22, "irrevoc": 22, "met": 22, "affirm": 22, "unlimit": 22, "constitut": 22, "acknowledg": 22, "fair": 22, "long": 22, "sole": 22, "exclus": 22, "facil": 22, "materi": 22, "behalf": 22, "outsid": 22, "relationship": 22, "circumst": 22, "sublicens": 22, "anti": 22, "circumvent": 22, "No": 22, "shall": 22, "deem": 22, "technolog": 22, "fulfil": 22, "oblig": 22, "articl": 22, "wipo": 22, "treati": 22, "decemb": 22, "1996": 22, "waiv": 22, "forbid": 22, "exercis": 22, "disclaim": 22, "medium": 22, "conspicu": 22, "intact": 22, "absenc": 22, "along": [22, 23], "carri": 22, "anyon": 22, "who": [22, 23], "possess": 22, "regardless": 22, "invalid": 22, "independ": 22, "aggreg": 22, "inclus": 22, "embodi": 22, "accompani": 22, "durabl": 22, "customarili": 22, "interchang": 22, "year": 22, "spare": 22, "cost": 22, "server": 22, "occasion": 22, "noncommerci": 22, "subsect": [22, 23], "6b": 22, "sai": 22, "peer": 22, "transmiss": 22, "6d": 22, "consum": 22, "tangibl": 22, "person": 22, "famili": 22, "household": 22, "sold": 22, "incorpor": 22, "dwell": 22, "doubt": 22, "resolv": 22, "favor": 22, "commerci": 22, "industri": 22, "unless": 22, "signific": 22, "suffic": 22, "continu": 22, "interf": 22, "transact": 22, "perpetu": 22, "But": 22, "neither": 22, "retain": 22, "abil": 22, "rom": 22, "servic": 22, "advers": 22, "affect": 22, "violat": 22, "rule": 22, "protocol": 22, "publicli": 22, "password": 22, "unpack": 22, "supplement": 22, "govern": 22, "regard": 22, "notwithstand": 22, "holder": 22, "liabil": 22, "misrepresent": 22, "licensor": 22, "declin": 22, "trademark": 22, "trade": 22, "indemnif": 22, "contractu": 22, "assumpt": 22, "impos": 22, "relicens": 22, "surviv": 22, "statement": 22, "expressli": 22, "void": 22, "paragraph": 22, "ceas": 22, "reinstat": 22, "provision": 22, "until": 22, "perman": 22, "notifi": 22, "cessat": 22, "moreov": 22, "cure": 22, "30": 22, "receipt": 22, "qualifi": 22, "Not": 22, "ancillari": 22, "consequ": 22, "likewis": 22, "noth": 22, "downstream": 22, "subject": 22, "complianc": 22, "entiti": 22, "asset": 22, "subdivid": 22, "merg": 22, "whatev": 22, "predecessor": 22, "had": 22, "effort": 22, "royalti": 22, "litig": 22, "cross": 22, "claim": 22, "counterclaim": 22, "lawsuit": 22, "alleg": 22, "sell": 22, "sale": 22, "contributor": 22, "acquir": 22, "worldwid": 22, "agreement": 22, "denomin": 22, "coven": 22, "sue": 22, "knowingli": 22, "readili": 22, "arrang": 22, "depriv": 22, "yourself": 22, "benefit": 22, "knowledg": 22, "believ": 22, "pursuant": 22, "procur": 22, "convey": 22, "discriminatori": 22, "busi": 22, "payment": 22, "primarili": 22, "28": 22, "march": 22, "constru": 22, "defens": 22, "court": 22, "contradict": 22, "excus": 22, "pertin": 22, "whom": 22, "refrain": 22, "13": 22, "affero": 22, "14": 22, "revis": 22, "Such": 22, "spirit": 22, "choos": 22, "ever": 22, "proxi": 22, "THERE": 22, "NO": 22, "THE": 22, "TO": 22, "BY": 22, "IN": 22, "OR": 22, "AS": 22, "OF": 22, "BUT": 22, "NOT": 22, "risk": 22, "qualiti": 22, "WITH": 22, "prove": 22, "defect": 22, "repair": 22, "event": 22, "WILL": 22, "BE": 22, "damag": 22, "incident": 22, "consequenti": 22, "inabl": 22, "loss": 22, "BEING": 22, "inaccur": 22, "sustain": 22, "IF": 22, "SUCH": 22, "17": 22, "review": 22, "waiver": 22, "civil": 22, "greatest": 22, "attach": 22, "safest": 22, "pointer": 22, "brief": 22, "www": 22, "contact": 22, "paper": 22, "mail": 22, "hypothet": 22, "gui": 22, "box": 22, "employ": 22, "programm": 22, "school": 22, "subroutin": 22, "lesser": 22, "lgpl": 22, "name_of_the_execut": 23, "dig": 23, "decomposit": 23, "energy_data": 23, "0x7fb15f425eb8": 23, "49586861429": 23, "42945116692": 23, "gather": 23, "scf_output": 23, "0x7fd37d6282b0": 23, "tailor": 23, "sens": 23, "punctual": 23, "mostli": 23, "top": 23, "resolut": 23, "ident": 23, "criteria": 23, "cc2": 23, "uhfmo_alpha": 23, "uhfmo_beta": 23}, "objects": {"": [[1, 0, 0, "-", "turbomoleio"]], "turbomoleio": [[2, 0, 0, "-", "core"], [4, 0, 0, "-", "input"], [7, 0, 0, "-", "output"], [9, 0, 0, "-", "testfiles"]], "turbomoleio.core": [[2, 0, 0, "-", "base"], [2, 0, 0, "-", "control"], [2, 0, 0, "-", "datagroups"], [2, 0, 0, "-", "molecule"], [2, 0, 0, "-", "periodic"], [2, 0, 0, "-", "symmetry"], [3, 0, 0, "-", "tests"], [2, 0, 0, "-", "utils"]], "turbomoleio.core.base": [[2, 1, 1, "", "BaseSystem"], [2, 3, 1, "", "get_coord_lines"], [2, 3, 1, "", "get_mol_and_indices_frozen"]], "turbomoleio.core.base.BaseSystem": [[2, 2, 1, "", "coord_lines"], [2, 2, 1, "", "to_coord_file"], [2, 2, 1, "", "to_coord_string"], [2, 2, 1, "", "to_file"]], "turbomoleio.core.control": [[2, 1, 1, "", "Control"], [2, 1, 1, "", "Defaults"], [2, 1, 1, "", "Energy"], [2, 1, 1, "", "Gradient"], [2, 1, 1, "", "Shells"], [2, 3, 1, "", "adg"], [2, 3, 1, "", "cdg"], [2, 3, 1, "", "cpc"], [2, 3, 1, "", "kdg"], [2, 3, 1, "", "mdgo"], [2, 3, 1, "", "sdg"], [2, 3, 1, "", "sdgo"]], "turbomoleio.core.control.Control": [[2, 2, 1, "", "add_cosmo"], [2, 2, 1, "", "cpc"], [2, 4, 1, "", "energy"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_metric"], [2, 2, 1, "", "get_charge"], [2, 2, 1, "", "get_shells"], [2, 2, 1, "", "get_subfiles_list"], [2, 4, 1, "", "gradient"], [2, 4, 1, "", "is_uhf"], [2, 2, 1, "", "remove_last_energy"], [2, 2, 1, "", "remove_last_gradient"], [2, 2, 1, "", "set_disp"], [2, 2, 1, "", "to_file"]], "turbomoleio.core.control.Defaults": [[2, 5, 1, "", "METRIC"]], "turbomoleio.core.control.Energy": [[2, 4, 1, "", "delta_e"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 4, 1, "", "n_steps"], [2, 2, 1, "", "plot"]], "turbomoleio.core.control.Gradient": [[2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 4, 1, "", "last_grad_max"], [2, 4, 1, "", "last_grad_norm"], [2, 4, 1, "", "max_gradients"], [2, 4, 1, "", "n_steps"], [2, 4, 1, "", "norms"], [2, 2, 1, "", "plot"]], "turbomoleio.core.control.Shells": [[2, 2, 1, "", "as_dict"], [2, 2, 1, "", "from_dict"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 4, 1, "", "irreps"], [2, 2, 1, "", "to_datagroup"], [2, 4, 1, "", "total_electrons"]], "turbomoleio.core.datagroups": [[2, 1, 1, "", "DataGroups"], [2, 3, 1, "", "cleanup_string"], [2, 3, 1, "", "compare_datagroup_string"], [2, 3, 1, "", "remove_comments"], [2, 3, 1, "", "remove_dg_from_list"], [2, 3, 1, "", "split_string_to_dg_list"]], "turbomoleio.core.datagroups.DataGroups": [[2, 2, 1, "", "add_data_group"], [2, 2, 1, "", "adg"], [2, 2, 1, "", "as_dict"], [2, 2, 1, "", "cdg"], [2, 2, 1, "", "change_data_group"], [2, 2, 1, "", "compare"], [2, 2, 1, "", "empty"], [2, 2, 1, "", "from_dict"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "kdg"], [2, 2, 1, "", "kill_data_group"], [2, 2, 1, "", "mdgo"], [2, 2, 1, "", "modify_data_group_options"], [2, 4, 1, "", "ndg"], [2, 4, 1, "", "number_of_data_groups"], [2, 2, 1, "", "sdg"], [2, 2, 1, "", "sdgo"], [2, 2, 1, "", "show_data_group"], [2, 2, 1, "", "show_data_group_option"], [2, 2, 1, "", "show_subfile_fname"], [2, 2, 1, "", "to_file"]], "turbomoleio.core.molecule": [[2, 1, 1, "", "BondAngle"], [2, 1, 1, "", "CollinearBendingAngle"], [2, 1, 1, "", "DihedralAngle"], [2, 1, 1, "", "Distance"], [2, 1, 1, "", "InternalDefinition"], [2, 1, 1, "", "InverseDistance"], [2, 1, 1, "", "MoleculeSystem"], [2, 1, 1, "", "OutOfPlaneAngle"], [2, 1, 1, "", "PerpendicularBendingAngle"]], "turbomoleio.core.molecule.BondAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.CollinearBendingAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.DihedralAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.Distance": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.InternalDefinition": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 2, 1, "", "from_string"], [2, 2, 1, "", "get_subclass_from_str"], [2, 2, 1, "", "is_valid"], [2, 5, 1, "", "n_atoms"], [2, 2, 1, "", "to_string"]], "turbomoleio.core.molecule.InverseDistance": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.MoleculeSystem": [[2, 2, 1, "", "add_bond_angle"], [2, 2, 1, "", "add_dihedral"], [2, 2, 1, "", "add_distance"], [2, 2, 1, "", "as_dict"], [2, 2, 1, "", "from_dict"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 2, 1, "", "get_int_def_inconsistencies"], [2, 2, 1, "", "has_inconsistencies"], [2, 4, 1, "", "molecule"], [2, 2, 1, "", "to_coord_string"]], "turbomoleio.core.molecule.OutOfPlaneAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.PerpendicularBendingAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.periodic": [[2, 1, 1, "", "PeriodicSystem"]], "turbomoleio.core.periodic.PeriodicSystem": [[2, 2, 1, "", "as_dict"], [2, 2, 1, "", "from_dict"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 4, 1, "", "structure"], [2, 2, 1, "", "to_coord_string"]], "turbomoleio.core.tests": [[3, 0, 0, "-", "test_control"], [3, 0, 0, "-", "test_datagroups"], [3, 0, 0, "-", "test_molecule"], [3, 0, 0, "-", "test_periodic"], [3, 0, 0, "-", "test_utils"]], "turbomoleio.core.tests.test_control": [[3, 1, 1, "", "TestControl"], [3, 1, 1, "", "TestDatagroupFunctions"], [3, 1, 1, "", "TestEnergy"], [3, 1, 1, "", "TestGradient"], [3, 1, 1, "", "TestShells"], [3, 3, 1, "", "check_equivalent_dg"]], "turbomoleio.core.tests.test_control.TestControl": [[3, 2, 1, "", "test_add_cosmo"], [3, 2, 1, "", "test_cpc"], [3, 2, 1, "", "test_disp"], [3, 2, 1, "", "test_energy"], [3, 2, 1, "", "test_from_file"], [3, 2, 1, "", "test_from_metric"], [3, 2, 1, "", "test_get_charge"], [3, 2, 1, "", "test_get_shells"], [3, 2, 1, "", "test_get_subfiles_list"], [3, 2, 1, "", "test_gradient"], [3, 2, 1, "", "test_is_uhf"], [3, 2, 1, "", "test_remove_energy"], [3, 2, 1, "", "test_remove_energy_in_control"], [3, 2, 1, "", "test_remove_gradient"], [3, 2, 1, "", "test_remove_gradient_in_control"]], "turbomoleio.core.tests.test_control.TestDatagroupFunctions": [[3, 5, 1, "", "pytestmark"], [3, 2, 1, "", "test_adg"], [3, 2, 1, "", "test_cdg"], [3, 2, 1, "", "test_cpc"], [3, 2, 1, "", "test_kdg"], [3, 2, 1, "", "test_mdgo"], [3, 2, 1, "", "test_sdg"], [3, 2, 1, "", "test_sdgo"]], "turbomoleio.core.tests.test_control.TestEnergy": [[3, 2, 1, "", "test_energy_mp2"], [3, 2, 1, "", "test_energy_scf"]], "turbomoleio.core.tests.test_control.TestGradient": [[3, 2, 1, "", "test_empty_gradient"], [3, 2, 1, "", "test_fail_parsing"], [3, 2, 1, "", "test_gradient"], [3, 2, 1, "", "test_periodic"]], "turbomoleio.core.tests.test_control.TestShells": [[3, 2, 1, "", "test_closed"], [3, 2, 1, "", "test_fail_parse"], [3, 2, 1, "", "test_fractional"], [3, 2, 1, "", "test_uhf"]], "turbomoleio.core.tests.test_datagroups": [[3, 3, 1, "", "test_cleanup"], [3, 3, 1, "", "test_compare"], [3, 3, 1, "", "test_compare_datagroup_string"], [3, 3, 1, "", "test_datagroups"], [3, 3, 1, "", "test_empty"], [3, 3, 1, "", "test_modify_data_group_options"], [3, 3, 1, "", "test_remove_comments"], [3, 3, 1, "", "test_remove_dg_from_list"], [3, 3, 1, "", "test_sdg_subfiles"], [3, 3, 1, "", "test_show_data_group_option"], [3, 3, 1, "", "test_show_subfile_fname"], [3, 3, 1, "", "test_split_string_to_dg_list"]], "turbomoleio.core.tests.test_molecule": [[3, 1, 1, "", "TestInternalDefinition"], [3, 1, 1, "", "TestMoleculeSystem"], [3, 3, 1, "", "check_dg"], [3, 3, 1, "", "check_user_defined_bonds_dg"]], "turbomoleio.core.tests.test_molecule.TestInternalDefinition": [[3, 5, 1, "", "pytestmark"], [3, 2, 1, "", "test_bond_angle"], [3, 2, 1, "", "test_collinear_bending_angle"], [3, 2, 1, "", "test_dihedral_angle"], [3, 2, 1, "", "test_distance"], [3, 2, 1, "", "test_from_string"], [3, 2, 1, "", "test_inverse_distance"], [3, 2, 1, "", "test_out_of_plane_angle"], [3, 2, 1, "", "test_perpendicular_bending_angle"]], "turbomoleio.core.tests.test_molecule.TestMoleculeSystem": [[3, 2, 1, "", "test_add_bond_angle"], [3, 2, 1, "", "test_add_dihedral"], [3, 2, 1, "", "test_add_distance"], [3, 2, 1, "", "test_check_index"], [3, 2, 1, "", "test_disordered"], [3, 2, 1, "", "test_dummy_atoms"], [3, 2, 1, "", "test_from_string"], [3, 2, 1, "", "test_to_coord_string"], [3, 2, 1, "", "test_to_file"]], "turbomoleio.core.tests.test_periodic": [[3, 1, 1, "", "TestPeriodicSystem"]], "turbomoleio.core.tests.test_periodic.TestPeriodicSystem": [[3, 2, 1, "", "test_periodic_2d"], [3, 2, 1, "", "test_periodic_3d"], [3, 2, 1, "", "test_periodic_wrong_rotation"], [3, 2, 1, "", "test_read_periodic_2d"]], "turbomoleio.core.tests.test_utils": [[3, 1, 1, "", "TestGetVersion"]], "turbomoleio.core.tests.test_utils.TestGetVersion": [[3, 2, 1, "", "test_V72"], [3, 2, 1, "", "test_V731"], [3, 2, 1, "", "test_V741"], [3, 2, 1, "", "test_V751"]], "turbomoleio.core.utils": [[2, 3, 1, "", "define_quit"], [2, 3, 1, "", "get_tm_version"]], "turbomoleio.input": [[4, 0, 0, "-", "define"], [5, 0, 0, "-", "templates"], [6, 0, 0, "-", "tests"], [4, 0, 0, "-", "utils"]], "turbomoleio.input.define": [[4, 6, 1, "", "DefineError"], [4, 6, 1, "", "DefineExpectError"], [4, 6, 1, "", "DefineIredError"], [4, 6, 1, "", "DefineParameterError"], [4, 1, 1, "", "DefineRunner"], [4, 6, 1, "", "UnsupportedDefineStateError"]], "turbomoleio.input.define.DefineRunner": [[4, 2, 1, "", "dump_command_file"], [4, 2, 1, "", "run_full"], [4, 2, 1, "", "run_generate_mo_files"], [4, 2, 1, "", "run_update_internal_coords"]], "turbomoleio.input.tests": [[6, 0, 0, "-", "test_define"], [6, 0, 0, "-", "test_utils"]], "turbomoleio.input.tests.test_define": [[6, 1, 1, "", "TestDefineRunner"], [6, 1, 1, "", "TestExceptions"], [6, 3, 1, "", "dr_data"]], "turbomoleio.input.tests.test_define.TestDefineRunner": [[6, 2, 1, "", "assert_sendline_calls"], [6, 2, 1, "", "assert_sendline_has_calls"], [6, 2, 1, "", "test_add_atomic_coordinates_from_file"], [6, 2, 1, "", "test_add_atomic_coordinates_from_file_cartesian"], [6, 2, 1, "", "test_add_cosmo"], [6, 2, 1, "", "test_close"], [6, 2, 1, "", "test_copy_mo_files_ab_mos"], [6, 2, 1, "", "test_copy_mo_files_alpha_beta"], [6, 2, 1, "", "test_copy_mo_files_error"], [6, 2, 1, "", "test_copy_mo_files_mo"], [6, 2, 1, "", "test_define_basis_sets"], [6, 2, 1, "", "test_define_core_potentials"], [6, 2, 1, "", "test_define_symmetry"], [6, 2, 1, "", "test_define_symmetry_error"], [6, 2, 1, "", "test_determine_symmetry"], [6, 2, 1, "", "test_determine_symmetry_eps"], [6, 2, 1, "", "test_dump_command_file"], [6, 2, 1, "", "test_excited_state_menu_error_not_activated"], [6, 2, 1, "", "test_excited_state_menu_frequency"], [6, 2, 1, "", "test_excited_state_menu_irrep"], [6, 2, 1, "", "test_excited_state_menu_irrep_wrong_sym"], [6, 2, 1, "", "test_excited_state_menu_polly"], [6, 2, 1, "", "test_excited_state_menu_rpas"], [6, 2, 1, "", "test_excited_state_menu_urpa"], [6, 2, 1, "", "test_excited_state_menu_urpa_error"], [6, 2, 1, "", "test_excited_state_menu_wrong_ex_method"], [6, 2, 1, "", "test_excited_state_menu_wrong_menu"], [6, 2, 1, "", "test_existing_coordinates"], [6, 2, 1, "", "test_existing_coordinates_cartesian"], [6, 2, 1, "", "test_existing_coordinates_error"], [6, 2, 1, "", "test_existing_coordinates_no_update"], [6, 2, 1, "", "test_existing_coordinates_unsupported"], [6, 2, 1, "", "test_expect"], [6, 2, 1, "", "test_expect_raise_eof"], [6, 2, 1, "", "test_expect_raise_timeout"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_charge"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_default"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_error"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_nocharge"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_unpaired"], [6, 2, 1, "", "test_general_menu_ccsdt"], [6, 2, 1, "", "test_general_menu_dft"], [6, 2, 1, "", "test_general_menu_hf"], [6, 2, 1, "", "test_general_menu_wrong_method"], [6, 2, 1, "", "test_generate_internal_coordinates"], [6, 2, 1, "", "test_generate_internal_coordinates_error"], [6, 2, 1, "", "test_geometry_menu_copymo"], [6, 2, 1, "", "test_geometry_menu_incompatibility_1"], [6, 2, 1, "", "test_geometry_menu_incompatibility_2"], [6, 2, 1, "", "test_geometry_menu_new_coords_1"], [6, 2, 1, "", "test_geometry_menu_new_coords_2"], [6, 2, 1, "", "test_geometry_menu_new_coords_3"], [6, 2, 1, "", "test_geometry_menu_new_coords_4"], [6, 2, 1, "", "test_geometry_menu_no_new_coords"], [6, 2, 1, "", "test_get_bin_path"], [6, 2, 1, "", "test_go_to_general_menu"], [6, 2, 1, "", "test_init"], [6, 2, 1, "", "test_initialize_control_1"], [6, 2, 1, "", "test_initialize_control_2"], [6, 2, 1, "", "test_initialize_control_incompatibility"], [6, 2, 1, "", "test_is_alive"], [6, 2, 1, "", "test_postprocess"], [6, 2, 1, "", "test_quit_general_menu"], [6, 2, 1, "", "test_run_full_1"], [6, 2, 1, "", "test_run_full_2"], [6, 2, 1, "", "test_run_generate_mo_files"], [6, 2, 1, "", "test_run_generate_mo_files_sym"], [6, 2, 1, "", "test_run_update_internal_coords"], [6, 2, 1, "", "test_run_update_internal_coords_error"], [6, 2, 1, "", "test_sendline"], [6, 2, 1, "", "test_set_basis"], [6, 2, 1, "", "test_set_basis_error"], [6, 2, 1, "", "test_set_basis_error_2"], [6, 2, 1, "", "test_set_basis_error_3"], [6, 2, 1, "", "test_set_dft_options_no_dft"], [6, 2, 1, "", "test_set_dft_options_use_dft"], [6, 2, 1, "", "test_set_dft_options_wrong_xc"], [6, 2, 1, "", "test_set_ecp_error"], [6, 2, 1, "", "test_set_ecp_error_2"], [6, 2, 1, "", "test_set_ecp_error_3"], [6, 2, 1, "", "test_set_metric"], [6, 2, 1, "", "test_set_mo_from_control_file"], [6, 2, 1, "", "test_set_mo_from_control_file_2"], [6, 2, 1, "", "test_set_mo_from_control_file_error"], [6, 2, 1, "", "test_set_mo_from_control_file_longpath"], [6, 2, 1, "", "test_set_mp2_options"], [6, 2, 1, "", "test_set_mp2_options_f12"], [6, 2, 1, "", "test_set_mp2_options_geoopt"], [6, 2, 1, "", "test_set_mp2_options_mp2"], [6, 2, 1, "", "test_set_mp2_options_mp2_error"], [6, 2, 1, "", "test_set_ri_state"], [6, 2, 1, "", "test_set_ri_state_marij"], [6, 2, 1, "", "test_set_scf_options"], [6, 2, 1, "", "test_skip_atomic_attribute_menu"], [6, 2, 1, "", "test_skip_atomic_attribute_menu_error"], [6, 2, 1, "", "test_skip_atomic_attribute_menu_internal"], [6, 2, 1, "", "test_switch_to_atomic_attribute_menu"], [6, 2, 1, "", "test_switch_to_atomic_attribute_menu_internal"], [6, 2, 1, "", "test_switch_to_atomic_attribute_menu_internal_error"], [6, 2, 1, "", "test_switch_to_molecular_orbital_definition_menu"], [6, 2, 1, "", "test_switch_to_scf_menu"]], "turbomoleio.input.tests.test_define.TestExceptions": [[6, 2, 1, "", "test_create"]], "turbomoleio.input.tests.test_utils": [[6, 3, 1, "", "test_get_define_template"], [6, 3, 1, "", "test_validate_parameters"]], "turbomoleio.input.utils": [[4, 6, 1, "", "ParametersValidationError"], [4, 3, 1, "", "ex_setter"], [4, 3, 1, "", "get_define_template"], [4, 7, 1, "", "schema_define_params"], [4, 3, 1, "", "validate_parameters"]], "turbomoleio.output": [[7, 0, 0, "-", "data"], [7, 0, 0, "-", "files"], [7, 0, 0, "-", "parser"], [7, 0, 0, "-", "states"], [8, 0, 0, "-", "tests"]], "turbomoleio.output.data": [[7, 1, 1, "", "AoforceNumericalIntegrationData"], [7, 1, 1, "", "AoforceRotationalData"], [7, 1, 1, "", "AoforceVibrationalData"], [7, 1, 1, "", "BaseData"], [7, 1, 1, "", "BasisData"], [7, 1, 1, "", "CosmoData"], [7, 1, 1, "", "DFTData"], [7, 1, 1, "", "DispersionCorrectionData"], [7, 1, 1, "", "ElectrostaticMomentsData"], [7, 1, 1, "", "EscfData"], [7, 1, 1, "", "EscfIterationData"], [7, 1, 1, "", "FunctionalData"], [7, 1, 1, "", "GeometryData"], [7, 1, 1, "", "IntegralData"], [7, 1, 1, "", "MP2Data"], [7, 1, 1, "", "MP2Results"], [7, 1, 1, "", "PeriodicityData"], [7, 1, 1, "", "RelaxConvergenceData"], [7, 1, 1, "", "RelaxData"], [7, 1, 1, "", "RelaxGradientsData"], [7, 1, 1, "", "RiData"], [7, 1, 1, "", "RunData"], [7, 1, 1, "", "ScfData"], [7, 1, 1, "", "ScfEnergiesData"], [7, 1, 1, "", "ScfIterationData"], [7, 1, 1, "", "SingleExcitation"], [7, 1, 1, "", "SmearingData"], [7, 1, 1, "", "SpinData"], [7, 1, 1, "", "StatptData"], [7, 1, 1, "", "SymmetryData"], [7, 1, 1, "", "TurbomoleData"]], "turbomoleio.output.data.AoforceNumericalIntegrationData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.AoforceRotationalData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.AoforceVibrationalData": [[7, 2, 1, "", "from_parser"], [7, 2, 1, "", "get_freqs_df"], [7, 2, 1, "", "n_negative_freqs"], [7, 2, 1, "", "n_positive_freqs"], [7, 2, 1, "", "n_zero_freqs"]], "turbomoleio.output.data.BaseData": [[7, 2, 1, "", "from_file"], [7, 2, 1, "", "from_parser"], [7, 2, 1, "", "from_string"]], "turbomoleio.output.data.BasisData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.CosmoData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.DFTData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.DispersionCorrectionData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.ElectrostaticMomentsData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.EscfData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.EscfIterationData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.FunctionalData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.GeometryData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.IntegralData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.MP2Data": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.MP2Results": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.PeriodicityData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RelaxConvergenceData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RelaxData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RelaxGradientsData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RiData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RunData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.ScfData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.ScfEnergiesData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.ScfIterationData": [[7, 2, 1, "", "from_parser"], [7, 2, 1, "", "plot_energies"]], "turbomoleio.output.data.SmearingData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.SpinData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.StatptData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.SymmetryData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.TurbomoleData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files": [[7, 1, 1, "", "AoforceOutput"], [7, 1, 1, "", "EgradOutput"], [7, 1, 1, "", "EscfOnlyOutput"], [7, 1, 1, "", "EscfOutput"], [7, 1, 1, "", "GradOutput"], [7, 1, 1, "", "JobexOutput"], [7, 1, 1, "", "MP2Output"], [7, 1, 1, "", "RelaxOutput"], [7, 1, 1, "", "Ricc2Output"], [7, 1, 1, "", "ScfOutput"], [7, 1, 1, "", "StatptOutput"]], "turbomoleio.output.files.AoforceOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.EgradOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.EscfOnlyOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.EscfOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.GradOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.JobexOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.MP2Output": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.RelaxOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.Ricc2Output": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.ScfOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.StatptOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.parser": [[7, 1, 1, "", "Parser"], [7, 3, 1, "", "convert_float"], [7, 3, 1, "", "convert_int"], [7, 3, 1, "", "convert_time_string"]], "turbomoleio.output.parser.Parser": [[7, 2, 1, "", "all_done"], [7, 2, 1, "", "aoforce_analysis"], [7, 2, 1, "", "aoforce_numerical_integration"], [7, 2, 1, "", "basis"], [7, 2, 1, "", "centers"], [7, 2, 1, "", "coordinates"], [7, 2, 1, "", "cosmo_header"], [7, 2, 1, "", "cosmo_results"], [7, 2, 1, "", "density_functional_data"], [7, 2, 1, "", "dftd"], [7, 2, 1, "", "egrad_excited_state"], [7, 2, 1, "", "electrostatic_moments"], [7, 2, 1, "", "escf_excitations"], [7, 2, 1, "", "escf_gs_total_en"], [7, 2, 1, "", "escf_iterations"], [7, 2, 1, "", "fermi"], [7, 2, 1, "", "from_file"], [7, 2, 1, "", "get_split_jobex_parsers"], [7, 2, 1, "", "get_value"], [7, 2, 1, "", "gradient"], [7, 2, 1, "", "grep_line"], [7, 2, 1, "", "header"], [7, 2, 1, "", "integral"], [7, 2, 1, "", "is_uhf"], [7, 2, 1, "", "mp2_data"], [7, 2, 1, "", "mp2_results"], [7, 2, 1, "", "periodicity_data"], [7, 2, 1, "", "pre_escf_run"], [7, 2, 1, "", "pre_scf_run"], [7, 2, 1, "", "rdgrad_memory"], [7, 2, 1, "", "relax_conv_info"], [7, 2, 1, "", "relax_gradient_values"], [7, 2, 1, "", "relax_info"], [7, 2, 1, "", "rij_info"], [7, 2, 1, "", "riper_scf_energies"], [7, 2, 1, "", "s2"], [7, 2, 1, "", "scf_energies"], [7, 2, 1, "", "scf_iterations"], [7, 2, 1, "", "statpt_info"], [7, 4, 1, "", "string"], [7, 2, 1, "", "symmetry"], [7, 2, 1, "", "timings"]], "turbomoleio.output.states": [[7, 1, 1, "", "EigerOutput"], [7, 1, 1, "", "EigerRunner"], [7, 1, 1, "", "State"], [7, 1, 1, "", "States"], [7, 3, 1, "", "get_mos_energies"]], "turbomoleio.output.states.EigerOutput": [[7, 2, 1, "", "compare_states"], [7, 2, 1, "", "from_file"], [7, 2, 1, "", "from_string"]], "turbomoleio.output.states.EigerRunner": [[7, 2, 1, "", "get_eiger_output"], [7, 2, 1, "", "run"], [7, 2, 1, "", "to_file"]], "turbomoleio.output.states.State": [[7, 2, 1, "", "as_dict"], [7, 2, 1, "", "from_dict"], [7, 4, 1, "", "has_fractional_occ"], [7, 4, 1, "", "max_occupation"]], "turbomoleio.output.states.States": [[7, 2, 1, "", "as_dict"], [7, 4, 1, "", "eigenvalues"], [7, 2, 1, "", "filter_states"], [7, 2, 1, "", "from_file"], [7, 4, 1, "", "gap"], [7, 2, 1, "", "generate_lowest_filled_states"], [7, 2, 1, "", "get_shells"], [7, 4, 1, "", "has_fractional_occ"], [7, 4, 1, "", "has_hole"], [7, 4, 1, "", "homo"], [7, 4, 1, "", "homo_index"], [7, 2, 1, "", "insert"], [7, 4, 1, "", "irrep_indices"], [7, 4, 1, "", "irreps"], [7, 4, 1, "", "is_uhf"], [7, 4, 1, "", "lumo"], [7, 4, 1, "", "lumo_index"], [7, 4, 1, "", "n_states"], [7, 4, 1, "", "occupations"], [7, 4, 1, "", "spins"], [7, 4, 1, "", "total_electrons"]], "turbomoleio.output.tests": [[8, 0, 0, "-", "test_data"], [8, 0, 0, "-", "test_files"], [8, 0, 0, "-", "test_parser"], [8, 0, 0, "-", "test_states"]], "turbomoleio.output.tests.test_data": [[8, 3, 1, "", "test_AoforceVibrationalData"], [8, 3, 1, "", "test_ScfIterationData"], [8, 3, 1, "", "test_str"]], "turbomoleio.output.tests.test_files": [[8, 1, 1, "", "TestFiles"], [8, 3, 1, "", "cls_dict_path"], [8, 3, 1, "", "generate_files"]], "turbomoleio.output.tests.test_files.TestFiles": [[8, 2, 1, "", "test_properties"]], "turbomoleio.output.tests.test_parser": [[8, 1, 1, "", "TestFunctions"], [8, 1, 1, "", "TestParser"], [8, 3, 1, "", "generate_files"], [8, 3, 1, "", "method"], [8, 3, 1, "", "parser_and_dict"]], "turbomoleio.output.tests.test_parser.TestFunctions": [[8, 2, 1, "", "test_convert_float"], [8, 2, 1, "", "test_convert_int"], [8, 2, 1, "", "test_convert_time_string"]], "turbomoleio.output.tests.test_parser.TestParser": [[8, 2, 1, "", "test_fail_all_done_check"], [8, 2, 1, "", "test_get_split_jobex_parsers"], [8, 2, 1, "", "test_get_value"], [8, 2, 1, "", "test_grep_line"], [8, 2, 1, "", "test_properties"]], "turbomoleio.output.tests.test_states": [[8, 3, 1, "", "test_closed"], [8, 3, 1, "", "test_eiger_runner"], [8, 3, 1, "", "test_error_homo"], [8, 3, 1, "", "test_hole"], [8, 3, 1, "", "test_no_empty_states"], [8, 3, 1, "", "test_parsing_failures"], [8, 3, 1, "", "test_state"], [8, 3, 1, "", "test_uhf"]], "turbomoleio.testfiles": [[9, 0, 0, "-", "utils"]], "turbomoleio.testfiles.utils": [[9, 1, 1, "", "ItestConfig"], [9, 6, 1, "", "ItestError"], [9, 3, 1, "", "assert_MSONable"], [9, 3, 1, "", "assert_almost_equal"], [9, 3, 1, "", "compare_differences"], [9, 3, 1, "", "generate_control_for_test"], [9, 3, 1, "", "generate_reference_out_parser_files"], [9, 3, 1, "", "generate_reference_output"], [9, 3, 1, "", "get_control_filepath"], [9, 3, 1, "", "get_control_integration"], [9, 3, 1, "", "get_sp"], [9, 3, 1, "", "get_tfp"], [9, 3, 1, "", "gisnan"], [9, 3, 1, "", "has_matplotlib"], [9, 3, 1, "", "run_itest"], [9, 3, 1, "", "temp_dir"], [9, 3, 1, "", "touch_file"]], "turbomoleio.testfiles.utils.ItestConfig": [[9, 5, 1, "", "define_timeout"], [9, 5, 1, "", "delete_tmp_dir"], [9, 5, 1, "", "dryrun"], [9, 5, 1, "", "dryrun_fpath"], [9, 5, 1, "", "dryrun_use_ref_control"], [9, 5, 1, "", "generate_ref"], [9, 5, 1, "", "tol"]]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:function", "4": "py:property", "5": "py:attribute", "6": "py:exception", "7": "py:data"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"], "4": ["py", "property", "Python property"], "5": ["py", "attribute", "Python attribute"], "6": ["py", "exception", "Python exception"], "7": ["py", "data", "Python data"]}, "titleterms": {"turbomoleio": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 21], "packag": [1, 2, 3, 4, 5, 6, 7, 8, 9], "subpackag": [1, 2, 4, 7], "modul": [1, 2, 3, 4, 5, 6, 7, 8, 9], "content": [1, 2, 3, 4, 5, 6, 7, 8, 9], "core": [2, 3], "submodul": [2, 3, 4, 6, 7, 8, 9], "base": 2, "control": [2, 14], "datagroup": [2, 14], "molecul": 2, "period": [2, 13], "symmetri": 2, "util": [2, 4, 9], "test": [3, 6, 8, 12, 16, 18, 19], "test_control": 3, "test_datagroup": 3, "test_molecul": 3, "test_period": 3, "test_util": [3, 6], "input": [4, 5, 6], "defin": [4, 15, 16], "templat": 5, "test_defin": 6, "output": [7, 8, 18, 19, 23], "data": [7, 14, 23], "file": [7, 13, 14, 23], "parser": 7, "state": [7, 23], "test_data": 8, "test_fil": 8, "test_pars": 8, "test_stat": 8, "testfil": 9, "appendix": 10, "report": 11, "bug": [11, 12], "changelog": 12, "releas": 12, "1": 12, "3": 12, "0": 12, "feb": 12, "24": 12, "2022": 12, "develop": [12, 21], "chang": [12, 19], "2": 12, "16": 12, "15": 12, "featur": 12, "ad": 12, "sep": 12, "20": 12, "2021": 12, "fix": 12, "mar": 12, "11": 12, "The": [13, 14, 15, 19, 23], "coord": 13, "system": 13, "group": 14, "object": [14, 23], "access": 14, "valu": 14, "modifi": 14, "run": 15, "definerunn": 15, "paramet": 15, "valid": [15, 16], "runner": 16, "contribut": [17, 21], "log": [18, 23], "pars": [18, 19, 23], "new": [18, 19], "quantiti": 18, "type": 18, "suit": 19, "unit": 19, "integr": 19, "write": 19, "turbomol": 19, "version": [19, 20], "standard": 19, "procedur": 19, "backward": 20, "compat": 20, "user": 21, "guid": 21, "addit": 21, "inform": 21, "indic": 21, "tabl": 21, "licens": 22, "quick": 23, "start": 23, "overal": 23, "structur": 23, "common": 23}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "sphinx": 58}, "alltitles": {"turbomoleio": [[0, "turbomoleio"], [21, "turbomoleio"]], "turbomoleio package": [[1, "turbomoleio-package"]], "Subpackages": [[1, "subpackages"], [2, "subpackages"], [4, "subpackages"], [7, "subpackages"]], "Module contents": [[1, "module-turbomoleio"], [2, "module-turbomoleio.core"], [3, "module-turbomoleio.core.tests"], [4, "module-turbomoleio.input"], [5, "module-turbomoleio.input.templates"], [6, "module-turbomoleio.input.tests"], [7, "module-turbomoleio.output"], [8, "module-turbomoleio.output.tests"], [9, "module-turbomoleio.testfiles"]], "turbomoleio.core package": [[2, "turbomoleio-core-package"]], "Submodules": [[2, "submodules"], [3, "submodules"], [4, "submodules"], [6, "submodules"], [7, "submodules"], [8, "submodules"], [9, "submodules"]], "turbomoleio.core.base module": [[2, "module-turbomoleio.core.base"]], "turbomoleio.core.control module": [[2, "module-turbomoleio.core.control"]], "turbomoleio.core.datagroups module": [[2, "module-turbomoleio.core.datagroups"]], "turbomoleio.core.molecule module": [[2, "module-turbomoleio.core.molecule"]], "turbomoleio.core.periodic module": [[2, "module-turbomoleio.core.periodic"]], "turbomoleio.core.symmetry module": [[2, "module-turbomoleio.core.symmetry"]], "turbomoleio.core.utils module": [[2, "module-turbomoleio.core.utils"]], "turbomoleio.core.tests package": [[3, "turbomoleio-core-tests-package"]], "turbomoleio.core.tests.test_control module": [[3, "module-turbomoleio.core.tests.test_control"]], "turbomoleio.core.tests.test_datagroups module": [[3, "module-turbomoleio.core.tests.test_datagroups"]], "turbomoleio.core.tests.test_molecule module": [[3, "module-turbomoleio.core.tests.test_molecule"]], "turbomoleio.core.tests.test_periodic module": [[3, "module-turbomoleio.core.tests.test_periodic"]], "turbomoleio.core.tests.test_utils module": [[3, "module-turbomoleio.core.tests.test_utils"]], "turbomoleio.input package": [[4, "turbomoleio-input-package"]], "turbomoleio.input.define module": [[4, "module-turbomoleio.input.define"]], "turbomoleio.input.utils module": [[4, "module-turbomoleio.input.utils"]], "turbomoleio.input.templates package": [[5, "turbomoleio-input-templates-package"]], "turbomoleio.input.tests package": [[6, "turbomoleio-input-tests-package"]], "turbomoleio.input.tests.test_define module": [[6, "module-turbomoleio.input.tests.test_define"]], "turbomoleio.input.tests.test_utils module": [[6, "module-turbomoleio.input.tests.test_utils"]], "turbomoleio.output package": [[7, "turbomoleio-output-package"]], "turbomoleio.output.data module": [[7, "module-turbomoleio.output.data"]], "turbomoleio.output.files module": [[7, "module-turbomoleio.output.files"]], "turbomoleio.output.parser module": [[7, "module-turbomoleio.output.parser"]], "turbomoleio.output.states module": [[7, "module-turbomoleio.output.states"]], "turbomoleio.output.tests package": [[8, "turbomoleio-output-tests-package"]], "turbomoleio.output.tests.test_data module": [[8, "module-turbomoleio.output.tests.test_data"]], "turbomoleio.output.tests.test_files module": [[8, "module-turbomoleio.output.tests.test_files"]], "turbomoleio.output.tests.test_parser module": [[8, "module-turbomoleio.output.tests.test_parser"]], "turbomoleio.output.tests.test_states module": [[8, "module-turbomoleio.output.tests.test_states"]], "turbomoleio.testfiles package": [[9, "turbomoleio-testfiles-package"]], "turbomoleio.testfiles.utils module": [[9, "module-turbomoleio.testfiles.utils"]], "Appendix": [[10, "appendix"]], "Reporting bugs": [[11, "reporting-bugs"]], "Changelog": [[12, "changelog"]], "Release 1.3.0 (Feb 24, 2022)": [[12, "release-1-3-0-feb-24-2022"]], "Developer changes": [[12, "developer-changes"]], "Release 1.2.0 (Feb 16, 2022)": [[12, "release-1-2-0-feb-16-2022"]], "Release 1.1.1 (Feb 15, 2022)": [[12, "release-1-1-1-feb-15-2022"]], "Features added": [[12, "features-added"], [12, "id1"]], "Release 1.1.0 (Sep 20, 2021)": [[12, "release-1-1-0-sep-20-2021"]], "Bug fixing": [[12, "bug-fixing"]], "Testing and development": [[12, "testing-and-development"]], "Release 1.0.0 (Mar 11, 2021)": [[12, "release-1-0-0-mar-11-2021"]], "The coord file": [[13, "the-coord-file"]], "Periodic systems": [[13, "periodic-systems"]], "The data group files": [[14, "the-data-group-files"]], "The DataGroups object": [[14, "the-datagroups-object"]], "Accessing a data group value": [[14, "accessing-a-data-group-value"]], "Modifying a data group value": [[14, "modifying-a-data-group-value"]], "The Control object": [[14, "the-control-object"]], "Running define": [[15, "running-define"]], "The DefineRunner parameters": [[15, "the-definerunner-parameters"]], "Validation": [[15, "validation"], [16, "validation"]], "Define runner": [[16, "define-runner"]], "Tests": [[16, "tests"], [18, "tests"]], "Contributing": [[17, "contributing"]], "Output logs parsing": [[18, "output-logs-parsing"]], "Parsing a new quantity": [[18, "parsing-a-new-quantity"]], "Parsing a new type of log": [[18, "parsing-a-new-type-of-log"]], "Testing": [[19, "testing"]], "The test suite": [[19, "the-test-suite"]], "Unit tests": [[19, "unit-tests"]], "Integration tests": [[19, "integration-tests"], [19, "id1"]], "Writing new tests": [[19, "writing-new-tests"]], "Tests for output parsing": [[19, "tests-for-output-parsing"]], "Turbomole version change": [[19, "turbomole-version-change"]], "Standard procedure": [[19, "standard-procedure"]], "Unit-tests for output parsing": [[19, "unit-tests-for-output-parsing"]], "Versioning": [[20, "versioning"]], "Backward-compatibility": [[20, "backward-compatibility"]], "User guide": [[21, null]], "Contributing to turbomoleio": [[21, "contributing-to-turbomoleio"]], "Developer guide": [[21, null]], "Additional information": [[21, "additional-information"], [21, null]], "Indices and tables": [[21, "indices-and-tables"]], "License": [[22, "license"]], "Outputs parsing": [[23, "outputs-parsing"]], "The log files": [[23, "the-log-files"]], "Quick Start": [[23, "quick-start"]], "Overall Structure": [[23, "overall-structure"]], "Data and File Objects": [[23, "data-and-file-objects"]], "Common data objects": [[23, "common-data-objects"]], "File data objects": [[23, "file-data-objects"]], "The States object": [[23, "the-states-object"]]}, "indexentries": {"module": [[1, "module-turbomoleio"], [2, "module-turbomoleio.core"], [2, "module-turbomoleio.core.base"], [2, "module-turbomoleio.core.control"], [2, "module-turbomoleio.core.datagroups"], [2, "module-turbomoleio.core.molecule"], [2, "module-turbomoleio.core.periodic"], [2, "module-turbomoleio.core.symmetry"], [2, "module-turbomoleio.core.utils"], [3, "module-turbomoleio.core.tests"], [3, "module-turbomoleio.core.tests.test_control"], [3, "module-turbomoleio.core.tests.test_datagroups"], [3, "module-turbomoleio.core.tests.test_molecule"], [3, "module-turbomoleio.core.tests.test_periodic"], [3, "module-turbomoleio.core.tests.test_utils"], [4, "module-turbomoleio.input"], [4, "module-turbomoleio.input.define"], [4, "module-turbomoleio.input.utils"], [5, "module-turbomoleio.input.templates"], [6, "module-turbomoleio.input.tests"], [6, "module-turbomoleio.input.tests.test_define"], [6, "module-turbomoleio.input.tests.test_utils"], [7, "module-turbomoleio.output"], [7, "module-turbomoleio.output.data"], [7, "module-turbomoleio.output.files"], [7, "module-turbomoleio.output.parser"], [7, "module-turbomoleio.output.states"], [8, "module-turbomoleio.output.tests"], [8, "module-turbomoleio.output.tests.test_data"], [8, "module-turbomoleio.output.tests.test_files"], [8, "module-turbomoleio.output.tests.test_parser"], [8, "module-turbomoleio.output.tests.test_states"], [9, "module-turbomoleio.testfiles"], [9, "module-turbomoleio.testfiles.utils"]], "turbomoleio": [[1, "module-turbomoleio"]], "basesystem (class in turbomoleio.core.base)": [[2, "turbomoleio.core.base.BaseSystem"]], "bondangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.BondAngle"]], "collinearbendingangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle"]], "control (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Control"]], "datagroups (class in turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.DataGroups"]], "defaults (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Defaults"]], "dihedralangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.DihedralAngle"]], "distance (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.Distance"]], "energy (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Energy"]], "gradient (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Gradient"]], "internaldefinition (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.InternalDefinition"]], "inversedistance (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.InverseDistance"]], "metric (turbomoleio.core.control.defaults attribute)": [[2, "turbomoleio.core.control.Defaults.METRIC"]], "moleculesystem (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.MoleculeSystem"]], "outofplaneangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle"]], "periodicsystem (class in turbomoleio.core.periodic)": [[2, "turbomoleio.core.periodic.PeriodicSystem"]], "perpendicularbendingangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle"]], "shells (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Shells"]], "add_bond_angle() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.add_bond_angle"]], "add_cosmo() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.add_cosmo"]], "add_data_group() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.add_data_group"]], "add_dihedral() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.add_dihedral"]], "add_distance() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.add_distance"]], "adg() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.adg"]], "adg() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.adg"]], "as_dict() (turbomoleio.core.control.shells method)": [[2, "turbomoleio.core.control.Shells.as_dict"]], "as_dict() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.as_dict"]], "as_dict() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.as_dict"]], "as_dict() (turbomoleio.core.periodic.periodicsystem method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.as_dict"]], "cdg() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.cdg"]], "cdg() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.cdg"]], "change_data_group() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.change_data_group"]], "cleanup_string() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.cleanup_string"]], "compare() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.compare"]], "compare_datagroup_string() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.compare_datagroup_string"]], "compute_value() (turbomoleio.core.molecule.bondangle method)": [[2, "turbomoleio.core.molecule.BondAngle.compute_value"]], "compute_value() (turbomoleio.core.molecule.collinearbendingangle method)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle.compute_value"]], "compute_value() (turbomoleio.core.molecule.dihedralangle method)": [[2, "turbomoleio.core.molecule.DihedralAngle.compute_value"]], "compute_value() (turbomoleio.core.molecule.distance method)": [[2, "turbomoleio.core.molecule.Distance.compute_value"]], "compute_value() (turbomoleio.core.molecule.internaldefinition method)": [[2, "turbomoleio.core.molecule.InternalDefinition.compute_value"]], "compute_value() (turbomoleio.core.molecule.inversedistance method)": [[2, "turbomoleio.core.molecule.InverseDistance.compute_value"]], "compute_value() (turbomoleio.core.molecule.outofplaneangle method)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle.compute_value"]], "compute_value() (turbomoleio.core.molecule.perpendicularbendingangle method)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle.compute_value"]], "coord_lines() (turbomoleio.core.base.basesystem method)": [[2, "turbomoleio.core.base.BaseSystem.coord_lines"]], "coord_str (turbomoleio.core.molecule.bondangle attribute)": [[2, "turbomoleio.core.molecule.BondAngle.coord_str"]], "coord_str (turbomoleio.core.molecule.collinearbendingangle attribute)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle.coord_str"]], "coord_str (turbomoleio.core.molecule.dihedralangle attribute)": [[2, "turbomoleio.core.molecule.DihedralAngle.coord_str"]], "coord_str (turbomoleio.core.molecule.distance attribute)": [[2, "turbomoleio.core.molecule.Distance.coord_str"]], "coord_str (turbomoleio.core.molecule.internaldefinition attribute)": [[2, "turbomoleio.core.molecule.InternalDefinition.coord_str"]], "coord_str (turbomoleio.core.molecule.inversedistance attribute)": [[2, "turbomoleio.core.molecule.InverseDistance.coord_str"]], "coord_str (turbomoleio.core.molecule.outofplaneangle attribute)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle.coord_str"]], "coord_str (turbomoleio.core.molecule.perpendicularbendingangle attribute)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle.coord_str"]], "coord_type (turbomoleio.core.molecule.bondangle attribute)": [[2, "turbomoleio.core.molecule.BondAngle.coord_type"]], "coord_type (turbomoleio.core.molecule.collinearbendingangle attribute)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle.coord_type"]], "coord_type (turbomoleio.core.molecule.dihedralangle attribute)": [[2, "turbomoleio.core.molecule.DihedralAngle.coord_type"]], "coord_type (turbomoleio.core.molecule.distance attribute)": [[2, "turbomoleio.core.molecule.Distance.coord_type"]], "coord_type (turbomoleio.core.molecule.internaldefinition attribute)": [[2, "turbomoleio.core.molecule.InternalDefinition.coord_type"]], "coord_type (turbomoleio.core.molecule.inversedistance attribute)": [[2, "turbomoleio.core.molecule.InverseDistance.coord_type"]], "coord_type (turbomoleio.core.molecule.outofplaneangle attribute)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle.coord_type"]], "coord_type (turbomoleio.core.molecule.perpendicularbendingangle attribute)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle.coord_type"]], "cpc() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.cpc"]], "cpc() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.cpc"]], "define_quit() (in module turbomoleio.core.utils)": [[2, "turbomoleio.core.utils.define_quit"]], "delta_e (turbomoleio.core.control.energy property)": [[2, "turbomoleio.core.control.Energy.delta_e"]], "empty() (turbomoleio.core.datagroups.datagroups class method)": [[2, "turbomoleio.core.datagroups.DataGroups.empty"]], "energy (turbomoleio.core.control.control property)": [[2, "turbomoleio.core.control.Control.energy"]], "from_dict() (turbomoleio.core.control.shells class method)": [[2, "turbomoleio.core.control.Shells.from_dict"]], "from_dict() (turbomoleio.core.datagroups.datagroups class method)": [[2, "turbomoleio.core.datagroups.DataGroups.from_dict"]], "from_dict() (turbomoleio.core.molecule.moleculesystem class method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.from_dict"]], "from_dict() (turbomoleio.core.periodic.periodicsystem class method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.from_dict"]], "from_file() (turbomoleio.core.control.control class method)": [[2, "turbomoleio.core.control.Control.from_file"]], "from_file() (turbomoleio.core.control.energy class method)": [[2, "turbomoleio.core.control.Energy.from_file"]], "from_file() (turbomoleio.core.control.gradient class method)": [[2, "turbomoleio.core.control.Gradient.from_file"]], "from_file() (turbomoleio.core.control.shells class method)": [[2, "turbomoleio.core.control.Shells.from_file"]], "from_file() (turbomoleio.core.datagroups.datagroups class method)": [[2, "turbomoleio.core.datagroups.DataGroups.from_file"]], "from_file() (turbomoleio.core.molecule.moleculesystem class method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.from_file"]], "from_file() (turbomoleio.core.periodic.periodicsystem class method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.from_file"]], "from_metric() (turbomoleio.core.control.control class method)": [[2, "turbomoleio.core.control.Control.from_metric"]], "from_string() (turbomoleio.core.control.energy class method)": [[2, "turbomoleio.core.control.Energy.from_string"]], "from_string() (turbomoleio.core.control.gradient class method)": [[2, "turbomoleio.core.control.Gradient.from_string"]], "from_string() (turbomoleio.core.control.shells class method)": [[2, "turbomoleio.core.control.Shells.from_string"]], "from_string() (turbomoleio.core.molecule.internaldefinition class method)": [[2, "turbomoleio.core.molecule.InternalDefinition.from_string"]], "from_string() (turbomoleio.core.molecule.moleculesystem class method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.from_string"]], "from_string() (turbomoleio.core.periodic.periodicsystem class method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.from_string"]], "get_charge() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.get_charge"]], "get_coord_lines() (in module turbomoleio.core.base)": [[2, "turbomoleio.core.base.get_coord_lines"]], "get_int_def_inconsistencies() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.get_int_def_inconsistencies"]], "get_mol_and_indices_frozen() (in module turbomoleio.core.base)": [[2, "turbomoleio.core.base.get_mol_and_indices_frozen"]], "get_shells() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.get_shells"]], "get_subclass_from_str() (turbomoleio.core.molecule.internaldefinition static method)": [[2, "turbomoleio.core.molecule.InternalDefinition.get_subclass_from_str"]], "get_subfiles_list() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.get_subfiles_list"]], "get_tm_version() (in module turbomoleio.core.utils)": [[2, "turbomoleio.core.utils.get_tm_version"]], "gradient (turbomoleio.core.control.control property)": [[2, "turbomoleio.core.control.Control.gradient"]], "has_inconsistencies() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.has_inconsistencies"]], "irreps (turbomoleio.core.control.shells property)": [[2, "turbomoleio.core.control.Shells.irreps"]], "is_uhf (turbomoleio.core.control.control property)": [[2, "turbomoleio.core.control.Control.is_uhf"]], "is_valid() (turbomoleio.core.molecule.internaldefinition method)": [[2, "turbomoleio.core.molecule.InternalDefinition.is_valid"]], "kdg() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.kdg"]], "kdg() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.kdg"]], "kill_data_group() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.kill_data_group"]], "last_grad_max (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.last_grad_max"]], "last_grad_norm (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.last_grad_norm"]], "max_gradients (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.max_gradients"]], "mdgo() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.mdgo"]], "mdgo() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.mdgo"]], "modify_data_group_options() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.modify_data_group_options"]], "molecule (turbomoleio.core.molecule.moleculesystem property)": [[2, "turbomoleio.core.molecule.MoleculeSystem.molecule"]], "n_atoms (turbomoleio.core.molecule.bondangle attribute)": [[2, "turbomoleio.core.molecule.BondAngle.n_atoms"]], "n_atoms (turbomoleio.core.molecule.collinearbendingangle attribute)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle.n_atoms"]], "n_atoms (turbomoleio.core.molecule.dihedralangle attribute)": [[2, "turbomoleio.core.molecule.DihedralAngle.n_atoms"]], "n_atoms (turbomoleio.core.molecule.distance attribute)": [[2, "turbomoleio.core.molecule.Distance.n_atoms"]], "n_atoms (turbomoleio.core.molecule.internaldefinition attribute)": [[2, "turbomoleio.core.molecule.InternalDefinition.n_atoms"]], "n_atoms (turbomoleio.core.molecule.inversedistance attribute)": [[2, "turbomoleio.core.molecule.InverseDistance.n_atoms"]], "n_atoms (turbomoleio.core.molecule.outofplaneangle attribute)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle.n_atoms"]], "n_atoms (turbomoleio.core.molecule.perpendicularbendingangle attribute)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle.n_atoms"]], "n_steps (turbomoleio.core.control.energy property)": [[2, "turbomoleio.core.control.Energy.n_steps"]], "n_steps (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.n_steps"]], "ndg (turbomoleio.core.datagroups.datagroups property)": [[2, "turbomoleio.core.datagroups.DataGroups.ndg"]], "norms (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.norms"]], "number_of_data_groups (turbomoleio.core.datagroups.datagroups property)": [[2, "turbomoleio.core.datagroups.DataGroups.number_of_data_groups"]], "plot() (turbomoleio.core.control.energy method)": [[2, "turbomoleio.core.control.Energy.plot"]], "plot() (turbomoleio.core.control.gradient method)": [[2, "turbomoleio.core.control.Gradient.plot"]], "remove_comments() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.remove_comments"]], "remove_dg_from_list() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.remove_dg_from_list"]], "remove_last_energy() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.remove_last_energy"]], "remove_last_gradient() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.remove_last_gradient"]], "sdg() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.sdg"]], "sdg() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.sdg"]], "sdgo() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.sdgo"]], "sdgo() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.sdgo"]], "set_disp() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.set_disp"]], "show_data_group() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.show_data_group"]], "show_data_group_option() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.show_data_group_option"]], "show_subfile_fname() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.show_subfile_fname"]], "split_string_to_dg_list() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.split_string_to_dg_list"]], "structure (turbomoleio.core.periodic.periodicsystem property)": [[2, "turbomoleio.core.periodic.PeriodicSystem.structure"]], "to_coord_file() (turbomoleio.core.base.basesystem method)": [[2, "turbomoleio.core.base.BaseSystem.to_coord_file"]], "to_coord_string() (turbomoleio.core.base.basesystem method)": [[2, "turbomoleio.core.base.BaseSystem.to_coord_string"]], "to_coord_string() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.to_coord_string"]], "to_coord_string() (turbomoleio.core.periodic.periodicsystem method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.to_coord_string"]], "to_datagroup() (turbomoleio.core.control.shells method)": [[2, "turbomoleio.core.control.Shells.to_datagroup"]], "to_file() (turbomoleio.core.base.basesystem method)": [[2, "turbomoleio.core.base.BaseSystem.to_file"]], "to_file() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.to_file"]], "to_file() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.to_file"]], "to_string() (turbomoleio.core.molecule.internaldefinition method)": [[2, "turbomoleio.core.molecule.InternalDefinition.to_string"]], "total_electrons (turbomoleio.core.control.shells property)": [[2, "turbomoleio.core.control.Shells.total_electrons"]], "turbomoleio.core": [[2, "module-turbomoleio.core"]], "turbomoleio.core.base": [[2, "module-turbomoleio.core.base"]], "turbomoleio.core.control": [[2, "module-turbomoleio.core.control"]], "turbomoleio.core.datagroups": [[2, "module-turbomoleio.core.datagroups"]], "turbomoleio.core.molecule": [[2, "module-turbomoleio.core.molecule"]], "turbomoleio.core.periodic": [[2, "module-turbomoleio.core.periodic"]], "turbomoleio.core.symmetry": [[2, "module-turbomoleio.core.symmetry"]], "turbomoleio.core.utils": [[2, "module-turbomoleio.core.utils"]], "testcontrol (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestControl"]], "testdatagroupfunctions (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions"]], "testenergy (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestEnergy"]], "testgetversion (class in turbomoleio.core.tests.test_utils)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion"]], "testgradient (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestGradient"]], "testinternaldefinition (class in turbomoleio.core.tests.test_molecule)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition"]], "testmoleculesystem (class in turbomoleio.core.tests.test_molecule)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem"]], "testperiodicsystem (class in turbomoleio.core.tests.test_periodic)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem"]], "testshells (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestShells"]], "check_dg() (in module turbomoleio.core.tests.test_molecule)": [[3, "turbomoleio.core.tests.test_molecule.check_dg"]], "check_equivalent_dg() (in module turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.check_equivalent_dg"]], "check_user_defined_bonds_dg() (in module turbomoleio.core.tests.test_molecule)": [[3, "turbomoleio.core.tests.test_molecule.check_user_defined_bonds_dg"]], "pytestmark (turbomoleio.core.tests.test_control.testdatagroupfunctions attribute)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.pytestmark"]], "pytestmark (turbomoleio.core.tests.test_molecule.testinternaldefinition attribute)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.pytestmark"]], "test_v72() (turbomoleio.core.tests.test_utils.testgetversion method)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion.test_V72"]], "test_v731() (turbomoleio.core.tests.test_utils.testgetversion method)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion.test_V731"]], "test_v741() (turbomoleio.core.tests.test_utils.testgetversion method)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion.test_V741"]], "test_v751() (turbomoleio.core.tests.test_utils.testgetversion method)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion.test_V751"]], "test_add_bond_angle() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_add_bond_angle"]], "test_add_cosmo() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_add_cosmo"]], "test_add_dihedral() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_add_dihedral"]], "test_add_distance() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_add_distance"]], "test_adg() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_adg"]], "test_bond_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_bond_angle"]], "test_cdg() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_cdg"]], "test_check_index() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_check_index"]], "test_cleanup() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_cleanup"]], "test_closed() (turbomoleio.core.tests.test_control.testshells method)": [[3, "turbomoleio.core.tests.test_control.TestShells.test_closed"]], "test_collinear_bending_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_collinear_bending_angle"]], "test_compare() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_compare"]], "test_compare_datagroup_string() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_compare_datagroup_string"]], "test_cpc() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_cpc"]], "test_cpc() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_cpc"]], "test_datagroups() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_datagroups"]], "test_dihedral_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_dihedral_angle"]], "test_disordered() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_disordered"]], "test_disp() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_disp"]], "test_distance() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_distance"]], "test_dummy_atoms() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_dummy_atoms"]], "test_empty() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_empty"]], "test_empty_gradient() (turbomoleio.core.tests.test_control.testgradient method)": [[3, "turbomoleio.core.tests.test_control.TestGradient.test_empty_gradient"]], "test_energy() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_energy"]], "test_energy_mp2() (turbomoleio.core.tests.test_control.testenergy method)": [[3, "turbomoleio.core.tests.test_control.TestEnergy.test_energy_mp2"]], "test_energy_scf() (turbomoleio.core.tests.test_control.testenergy method)": [[3, "turbomoleio.core.tests.test_control.TestEnergy.test_energy_scf"]], "test_fail_parse() (turbomoleio.core.tests.test_control.testshells method)": [[3, "turbomoleio.core.tests.test_control.TestShells.test_fail_parse"]], "test_fail_parsing() (turbomoleio.core.tests.test_control.testgradient method)": [[3, "turbomoleio.core.tests.test_control.TestGradient.test_fail_parsing"]], "test_fractional() (turbomoleio.core.tests.test_control.testshells method)": [[3, "turbomoleio.core.tests.test_control.TestShells.test_fractional"]], "test_from_file() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_from_file"]], "test_from_metric() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_from_metric"]], "test_from_string() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_from_string"]], "test_from_string() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_from_string"]], "test_get_charge() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_get_charge"]], "test_get_shells() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_get_shells"]], "test_get_subfiles_list() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_get_subfiles_list"]], "test_gradient() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_gradient"]], "test_gradient() (turbomoleio.core.tests.test_control.testgradient method)": [[3, "turbomoleio.core.tests.test_control.TestGradient.test_gradient"]], "test_inverse_distance() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_inverse_distance"]], "test_is_uhf() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_is_uhf"]], "test_kdg() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_kdg"]], "test_mdgo() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_mdgo"]], "test_modify_data_group_options() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_modify_data_group_options"]], "test_out_of_plane_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_out_of_plane_angle"]], "test_periodic() (turbomoleio.core.tests.test_control.testgradient method)": [[3, "turbomoleio.core.tests.test_control.TestGradient.test_periodic"]], "test_periodic_2d() (turbomoleio.core.tests.test_periodic.testperiodicsystem method)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem.test_periodic_2d"]], "test_periodic_3d() (turbomoleio.core.tests.test_periodic.testperiodicsystem method)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem.test_periodic_3d"]], "test_periodic_wrong_rotation() (turbomoleio.core.tests.test_periodic.testperiodicsystem method)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem.test_periodic_wrong_rotation"]], "test_perpendicular_bending_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_perpendicular_bending_angle"]], "test_read_periodic_2d() (turbomoleio.core.tests.test_periodic.testperiodicsystem method)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem.test_read_periodic_2d"]], "test_remove_comments() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_remove_comments"]], "test_remove_dg_from_list() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_remove_dg_from_list"]], "test_remove_energy() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_remove_energy"]], "test_remove_energy_in_control() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_remove_energy_in_control"]], "test_remove_gradient() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_remove_gradient"]], "test_remove_gradient_in_control() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_remove_gradient_in_control"]], "test_sdg() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_sdg"]], "test_sdg_subfiles() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_sdg_subfiles"]], "test_sdgo() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_sdgo"]], "test_show_data_group_option() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_show_data_group_option"]], "test_show_subfile_fname() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_show_subfile_fname"]], "test_split_string_to_dg_list() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_split_string_to_dg_list"]], "test_to_coord_string() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_to_coord_string"]], "test_to_file() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_to_file"]], "test_uhf() (turbomoleio.core.tests.test_control.testshells method)": [[3, "turbomoleio.core.tests.test_control.TestShells.test_uhf"]], "turbomoleio.core.tests": [[3, "module-turbomoleio.core.tests"]], "turbomoleio.core.tests.test_control": [[3, "module-turbomoleio.core.tests.test_control"]], "turbomoleio.core.tests.test_datagroups": [[3, "module-turbomoleio.core.tests.test_datagroups"]], "turbomoleio.core.tests.test_molecule": [[3, "module-turbomoleio.core.tests.test_molecule"]], "turbomoleio.core.tests.test_periodic": [[3, "module-turbomoleio.core.tests.test_periodic"]], "turbomoleio.core.tests.test_utils": [[3, "module-turbomoleio.core.tests.test_utils"]], "defineerror": [[4, "turbomoleio.input.define.DefineError"]], "defineexpecterror": [[4, "turbomoleio.input.define.DefineExpectError"]], "defineirederror": [[4, "turbomoleio.input.define.DefineIredError"]], "defineparametererror": [[4, "turbomoleio.input.define.DefineParameterError"]], "definerunner (class in turbomoleio.input.define)": [[4, "turbomoleio.input.define.DefineRunner"]], "parametersvalidationerror": [[4, "turbomoleio.input.utils.ParametersValidationError"]], "unsupporteddefinestateerror": [[4, "turbomoleio.input.define.UnsupportedDefineStateError"]], "dump_command_file() (turbomoleio.input.define.definerunner method)": [[4, "turbomoleio.input.define.DefineRunner.dump_command_file"]], "ex_setter() (in module turbomoleio.input.utils)": [[4, "turbomoleio.input.utils.ex_setter"]], "get_define_template() (in module turbomoleio.input.utils)": [[4, "turbomoleio.input.utils.get_define_template"]], "run_full() (turbomoleio.input.define.definerunner method)": [[4, "turbomoleio.input.define.DefineRunner.run_full"]], "run_generate_mo_files() (turbomoleio.input.define.definerunner method)": [[4, "turbomoleio.input.define.DefineRunner.run_generate_mo_files"]], "run_update_internal_coords() (turbomoleio.input.define.definerunner method)": [[4, "turbomoleio.input.define.DefineRunner.run_update_internal_coords"]], "schema_define_params (in module turbomoleio.input.utils)": [[4, "turbomoleio.input.utils.schema_define_params"]], "turbomoleio.input": [[4, "module-turbomoleio.input"]], "turbomoleio.input.define": [[4, "module-turbomoleio.input.define"]], "turbomoleio.input.utils": [[4, "module-turbomoleio.input.utils"]], "validate_parameters() (in module turbomoleio.input.utils)": [[4, "turbomoleio.input.utils.validate_parameters"]], "turbomoleio.input.templates": [[5, "module-turbomoleio.input.templates"]], "testdefinerunner (class in turbomoleio.input.tests.test_define)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner"]], "testexceptions (class in turbomoleio.input.tests.test_define)": [[6, "turbomoleio.input.tests.test_define.TestExceptions"]], "assert_sendline_calls() (turbomoleio.input.tests.test_define.testdefinerunner static method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.assert_sendline_calls"]], "assert_sendline_has_calls() (turbomoleio.input.tests.test_define.testdefinerunner static method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.assert_sendline_has_calls"]], "dr_data() (in module turbomoleio.input.tests.test_define)": [[6, "turbomoleio.input.tests.test_define.dr_data"]], "test_add_atomic_coordinates_from_file() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_add_atomic_coordinates_from_file"]], "test_add_atomic_coordinates_from_file_cartesian() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_add_atomic_coordinates_from_file_cartesian"]], "test_add_cosmo() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_add_cosmo"]], "test_close() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_close"]], "test_copy_mo_files_ab_mos() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_copy_mo_files_ab_mos"]], "test_copy_mo_files_alpha_beta() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_copy_mo_files_alpha_beta"]], "test_copy_mo_files_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_copy_mo_files_error"]], "test_copy_mo_files_mo() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_copy_mo_files_mo"]], "test_create() (turbomoleio.input.tests.test_define.testexceptions method)": [[6, "turbomoleio.input.tests.test_define.TestExceptions.test_create"]], "test_define_basis_sets() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_define_basis_sets"]], "test_define_core_potentials() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_define_core_potentials"]], "test_define_symmetry() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_define_symmetry"]], "test_define_symmetry_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_define_symmetry_error"]], "test_determine_symmetry() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_determine_symmetry"]], "test_determine_symmetry_eps() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_determine_symmetry_eps"]], "test_dump_command_file() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_dump_command_file"]], "test_excited_state_menu_error_not_activated() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_error_not_activated"]], "test_excited_state_menu_frequency() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_frequency"]], "test_excited_state_menu_irrep() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_irrep"]], "test_excited_state_menu_irrep_wrong_sym() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_irrep_wrong_sym"]], "test_excited_state_menu_polly() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_polly"]], "test_excited_state_menu_rpas() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_rpas"]], "test_excited_state_menu_urpa() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_urpa"]], "test_excited_state_menu_urpa_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_urpa_error"]], "test_excited_state_menu_wrong_ex_method() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_wrong_ex_method"]], "test_excited_state_menu_wrong_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_wrong_menu"]], "test_existing_coordinates() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates"]], "test_existing_coordinates_cartesian() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates_cartesian"]], "test_existing_coordinates_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates_error"]], "test_existing_coordinates_no_update() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates_no_update"]], "test_existing_coordinates_unsupported() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates_unsupported"]], "test_expect() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_expect"]], "test_expect_raise_eof() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_expect_raise_eof"]], "test_expect_raise_timeout() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_expect_raise_timeout"]], "test_extended_hueckel_theory_menu_charge() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_charge"]], "test_extended_hueckel_theory_menu_default() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_default"]], "test_extended_hueckel_theory_menu_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_error"]], "test_extended_hueckel_theory_menu_nocharge() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_nocharge"]], "test_extended_hueckel_theory_menu_unpaired() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_unpaired"]], "test_general_menu_ccsdt() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_general_menu_ccsdt"]], "test_general_menu_dft() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_general_menu_dft"]], "test_general_menu_hf() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_general_menu_hf"]], "test_general_menu_wrong_method() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_general_menu_wrong_method"]], "test_generate_internal_coordinates() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_generate_internal_coordinates"]], "test_generate_internal_coordinates_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_generate_internal_coordinates_error"]], "test_geometry_menu_copymo() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_copymo"]], "test_geometry_menu_incompatibility_1() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_incompatibility_1"]], "test_geometry_menu_incompatibility_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_incompatibility_2"]], "test_geometry_menu_new_coords_1() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_new_coords_1"]], "test_geometry_menu_new_coords_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_new_coords_2"]], "test_geometry_menu_new_coords_3() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_new_coords_3"]], "test_geometry_menu_new_coords_4() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_new_coords_4"]], "test_geometry_menu_no_new_coords() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_no_new_coords"]], "test_get_bin_path() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_get_bin_path"]], "test_get_define_template() (in module turbomoleio.input.tests.test_utils)": [[6, "turbomoleio.input.tests.test_utils.test_get_define_template"]], "test_go_to_general_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_go_to_general_menu"]], "test_init() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_init"]], "test_initialize_control_1() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_initialize_control_1"]], "test_initialize_control_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_initialize_control_2"]], "test_initialize_control_incompatibility() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_initialize_control_incompatibility"]], "test_is_alive() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_is_alive"]], "test_postprocess() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_postprocess"]], "test_quit_general_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_quit_general_menu"]], "test_run_full_1() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_full_1"]], "test_run_full_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_full_2"]], "test_run_generate_mo_files() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_generate_mo_files"]], "test_run_generate_mo_files_sym() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_generate_mo_files_sym"]], "test_run_update_internal_coords() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_update_internal_coords"]], "test_run_update_internal_coords_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_update_internal_coords_error"]], "test_sendline() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_sendline"]], "test_set_basis() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_basis"]], "test_set_basis_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_basis_error"]], "test_set_basis_error_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_basis_error_2"]], "test_set_basis_error_3() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_basis_error_3"]], "test_set_dft_options_no_dft() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_dft_options_no_dft"]], "test_set_dft_options_use_dft() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_dft_options_use_dft"]], "test_set_dft_options_wrong_xc() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_dft_options_wrong_xc"]], "test_set_ecp_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ecp_error"]], "test_set_ecp_error_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ecp_error_2"]], "test_set_ecp_error_3() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ecp_error_3"]], "test_set_metric() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_metric"]], "test_set_mo_from_control_file() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mo_from_control_file"]], "test_set_mo_from_control_file_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mo_from_control_file_2"]], "test_set_mo_from_control_file_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mo_from_control_file_error"]], "test_set_mo_from_control_file_longpath() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mo_from_control_file_longpath"]], "test_set_mp2_options() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options"]], "test_set_mp2_options_f12() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options_f12"]], "test_set_mp2_options_geoopt() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options_geoopt"]], "test_set_mp2_options_mp2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options_mp2"]], "test_set_mp2_options_mp2_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options_mp2_error"]], "test_set_ri_state() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ri_state"]], "test_set_ri_state_marij() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ri_state_marij"]], "test_set_scf_options() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_scf_options"]], "test_skip_atomic_attribute_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_skip_atomic_attribute_menu"]], "test_skip_atomic_attribute_menu_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_skip_atomic_attribute_menu_error"]], "test_skip_atomic_attribute_menu_internal() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_skip_atomic_attribute_menu_internal"]], "test_switch_to_atomic_attribute_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_atomic_attribute_menu"]], "test_switch_to_atomic_attribute_menu_internal() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_atomic_attribute_menu_internal"]], "test_switch_to_atomic_attribute_menu_internal_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_atomic_attribute_menu_internal_error"]], "test_switch_to_molecular_orbital_definition_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_molecular_orbital_definition_menu"]], "test_switch_to_scf_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_scf_menu"]], "test_validate_parameters() (in module turbomoleio.input.tests.test_utils)": [[6, "turbomoleio.input.tests.test_utils.test_validate_parameters"]], "turbomoleio.input.tests": [[6, "module-turbomoleio.input.tests"]], "turbomoleio.input.tests.test_define": [[6, "module-turbomoleio.input.tests.test_define"]], "turbomoleio.input.tests.test_utils": [[6, "module-turbomoleio.input.tests.test_utils"]], "aoforcenumericalintegrationdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.AoforceNumericalIntegrationData"]], "aoforceoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.AoforceOutput"]], "aoforcerotationaldata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.AoforceRotationalData"]], "aoforcevibrationaldata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.AoforceVibrationalData"]], "basedata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.BaseData"]], "basisdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.BasisData"]], "cosmodata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.CosmoData"]], "dftdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.DFTData"]], "dispersioncorrectiondata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.DispersionCorrectionData"]], "egradoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.EgradOutput"]], "eigeroutput (class in turbomoleio.output.states)": [[7, "turbomoleio.output.states.EigerOutput"]], "eigerrunner (class in turbomoleio.output.states)": [[7, "turbomoleio.output.states.EigerRunner"]], "electrostaticmomentsdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.ElectrostaticMomentsData"]], "escfdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.EscfData"]], "escfiterationdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.EscfIterationData"]], "escfonlyoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.EscfOnlyOutput"]], "escfoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.EscfOutput"]], "functionaldata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.FunctionalData"]], "geometrydata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.GeometryData"]], "gradoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.GradOutput"]], "integraldata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.IntegralData"]], "jobexoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.JobexOutput"]], "mp2data (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.MP2Data"]], "mp2output (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.MP2Output"]], "mp2results (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.MP2Results"]], "parser (class in turbomoleio.output.parser)": [[7, "turbomoleio.output.parser.Parser"]], "periodicitydata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.PeriodicityData"]], "relaxconvergencedata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RelaxConvergenceData"]], "relaxdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RelaxData"]], "relaxgradientsdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RelaxGradientsData"]], "relaxoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.RelaxOutput"]], "ridata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RiData"]], "ricc2output (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.Ricc2Output"]], "rundata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RunData"]], "scfdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.ScfData"]], "scfenergiesdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.ScfEnergiesData"]], "scfiterationdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.ScfIterationData"]], "scfoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.ScfOutput"]], "singleexcitation (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.SingleExcitation"]], "smearingdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.SmearingData"]], "spindata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.SpinData"]], "state (class in turbomoleio.output.states)": [[7, "turbomoleio.output.states.State"]], "states (class in turbomoleio.output.states)": [[7, "turbomoleio.output.states.States"]], "statptdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.StatptData"]], "statptoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.StatptOutput"]], "symmetrydata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.SymmetryData"]], "turbomoledata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.TurbomoleData"]], "all_done() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.all_done"]], "aoforce_analysis() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.aoforce_analysis"]], "aoforce_numerical_integration() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.aoforce_numerical_integration"]], "as_dict() (turbomoleio.output.states.state method)": [[7, "turbomoleio.output.states.State.as_dict"]], "as_dict() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.as_dict"]], "basis() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.basis"]], "centers() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.centers"]], "compare_states() (turbomoleio.output.states.eigeroutput method)": [[7, "turbomoleio.output.states.EigerOutput.compare_states"]], "convert_float() (in module turbomoleio.output.parser)": [[7, "turbomoleio.output.parser.convert_float"]], "convert_int() (in module turbomoleio.output.parser)": [[7, "turbomoleio.output.parser.convert_int"]], "convert_time_string() (in module turbomoleio.output.parser)": [[7, "turbomoleio.output.parser.convert_time_string"]], "coordinates() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.coordinates"]], "cosmo_header() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.cosmo_header"]], "cosmo_results() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.cosmo_results"]], "density_functional_data() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.density_functional_data"]], "dftd() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.dftd"]], "egrad_excited_state() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.egrad_excited_state"]], "eigenvalues (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.eigenvalues"]], "electrostatic_moments() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.electrostatic_moments"]], "escf_excitations() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.escf_excitations"]], "escf_gs_total_en() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.escf_gs_total_en"]], "escf_iterations() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.escf_iterations"]], "fermi() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.fermi"]], "filter_states() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.filter_states"]], "from_dict() (turbomoleio.output.states.state class method)": [[7, "turbomoleio.output.states.State.from_dict"]], "from_file() (turbomoleio.output.data.basedata class method)": [[7, "turbomoleio.output.data.BaseData.from_file"]], "from_file() (turbomoleio.output.parser.parser class method)": [[7, "turbomoleio.output.parser.Parser.from_file"]], "from_file() (turbomoleio.output.states.eigeroutput class method)": [[7, "turbomoleio.output.states.EigerOutput.from_file"]], "from_file() (turbomoleio.output.states.states class method)": [[7, "turbomoleio.output.states.States.from_file"]], "from_parser() (turbomoleio.output.data.aoforcenumericalintegrationdata class method)": [[7, "turbomoleio.output.data.AoforceNumericalIntegrationData.from_parser"]], "from_parser() (turbomoleio.output.data.aoforcerotationaldata class method)": [[7, "turbomoleio.output.data.AoforceRotationalData.from_parser"]], "from_parser() (turbomoleio.output.data.aoforcevibrationaldata class method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.from_parser"]], "from_parser() (turbomoleio.output.data.basedata class method)": [[7, "turbomoleio.output.data.BaseData.from_parser"]], "from_parser() (turbomoleio.output.data.basisdata class method)": [[7, "turbomoleio.output.data.BasisData.from_parser"]], "from_parser() (turbomoleio.output.data.cosmodata class method)": [[7, "turbomoleio.output.data.CosmoData.from_parser"]], "from_parser() (turbomoleio.output.data.dftdata class method)": [[7, "turbomoleio.output.data.DFTData.from_parser"]], "from_parser() (turbomoleio.output.data.dispersioncorrectiondata class method)": [[7, "turbomoleio.output.data.DispersionCorrectionData.from_parser"]], "from_parser() (turbomoleio.output.data.electrostaticmomentsdata class method)": [[7, "turbomoleio.output.data.ElectrostaticMomentsData.from_parser"]], "from_parser() (turbomoleio.output.data.escfdata class method)": [[7, "turbomoleio.output.data.EscfData.from_parser"]], "from_parser() (turbomoleio.output.data.escfiterationdata class method)": [[7, "turbomoleio.output.data.EscfIterationData.from_parser"]], "from_parser() (turbomoleio.output.data.functionaldata class method)": [[7, "turbomoleio.output.data.FunctionalData.from_parser"]], "from_parser() (turbomoleio.output.data.geometrydata class method)": [[7, "turbomoleio.output.data.GeometryData.from_parser"]], "from_parser() (turbomoleio.output.data.integraldata class method)": [[7, "turbomoleio.output.data.IntegralData.from_parser"]], "from_parser() (turbomoleio.output.data.mp2data class method)": [[7, "turbomoleio.output.data.MP2Data.from_parser"]], "from_parser() (turbomoleio.output.data.mp2results class method)": [[7, "turbomoleio.output.data.MP2Results.from_parser"]], "from_parser() (turbomoleio.output.data.periodicitydata class method)": [[7, "turbomoleio.output.data.PeriodicityData.from_parser"]], "from_parser() (turbomoleio.output.data.relaxconvergencedata class method)": [[7, "turbomoleio.output.data.RelaxConvergenceData.from_parser"]], "from_parser() (turbomoleio.output.data.relaxdata class method)": [[7, "turbomoleio.output.data.RelaxData.from_parser"]], "from_parser() (turbomoleio.output.data.relaxgradientsdata class method)": [[7, "turbomoleio.output.data.RelaxGradientsData.from_parser"]], "from_parser() (turbomoleio.output.data.ridata class method)": [[7, "turbomoleio.output.data.RiData.from_parser"]], "from_parser() (turbomoleio.output.data.rundata class method)": [[7, "turbomoleio.output.data.RunData.from_parser"]], "from_parser() (turbomoleio.output.data.scfdata class method)": [[7, "turbomoleio.output.data.ScfData.from_parser"]], "from_parser() (turbomoleio.output.data.scfenergiesdata class method)": [[7, "turbomoleio.output.data.ScfEnergiesData.from_parser"]], "from_parser() (turbomoleio.output.data.scfiterationdata class method)": [[7, "turbomoleio.output.data.ScfIterationData.from_parser"]], "from_parser() (turbomoleio.output.data.smearingdata class method)": [[7, "turbomoleio.output.data.SmearingData.from_parser"]], "from_parser() (turbomoleio.output.data.spindata class method)": [[7, "turbomoleio.output.data.SpinData.from_parser"]], "from_parser() (turbomoleio.output.data.statptdata class method)": [[7, "turbomoleio.output.data.StatptData.from_parser"]], "from_parser() (turbomoleio.output.data.symmetrydata class method)": [[7, "turbomoleio.output.data.SymmetryData.from_parser"]], "from_parser() (turbomoleio.output.data.turbomoledata class method)": [[7, "turbomoleio.output.data.TurbomoleData.from_parser"]], "from_parser() (turbomoleio.output.files.aoforceoutput class method)": [[7, "turbomoleio.output.files.AoforceOutput.from_parser"]], "from_parser() (turbomoleio.output.files.egradoutput class method)": [[7, "turbomoleio.output.files.EgradOutput.from_parser"]], "from_parser() (turbomoleio.output.files.escfonlyoutput class method)": [[7, "turbomoleio.output.files.EscfOnlyOutput.from_parser"]], "from_parser() (turbomoleio.output.files.escfoutput class method)": [[7, "turbomoleio.output.files.EscfOutput.from_parser"]], "from_parser() (turbomoleio.output.files.gradoutput class method)": [[7, "turbomoleio.output.files.GradOutput.from_parser"]], "from_parser() (turbomoleio.output.files.jobexoutput class method)": [[7, "turbomoleio.output.files.JobexOutput.from_parser"]], "from_parser() (turbomoleio.output.files.mp2output class method)": [[7, "turbomoleio.output.files.MP2Output.from_parser"]], "from_parser() (turbomoleio.output.files.relaxoutput class method)": [[7, "turbomoleio.output.files.RelaxOutput.from_parser"]], "from_parser() (turbomoleio.output.files.ricc2output class method)": [[7, "turbomoleio.output.files.Ricc2Output.from_parser"]], "from_parser() (turbomoleio.output.files.scfoutput class method)": [[7, "turbomoleio.output.files.ScfOutput.from_parser"]], "from_parser() (turbomoleio.output.files.statptoutput class method)": [[7, "turbomoleio.output.files.StatptOutput.from_parser"]], "from_string() (turbomoleio.output.data.basedata class method)": [[7, "turbomoleio.output.data.BaseData.from_string"]], "from_string() (turbomoleio.output.states.eigeroutput class method)": [[7, "turbomoleio.output.states.EigerOutput.from_string"]], "gap (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.gap"]], "generate_lowest_filled_states() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.generate_lowest_filled_states"]], "get_eiger_output() (turbomoleio.output.states.eigerrunner method)": [[7, "turbomoleio.output.states.EigerRunner.get_eiger_output"]], "get_freqs_df() (turbomoleio.output.data.aoforcevibrationaldata method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.get_freqs_df"]], "get_mos_energies() (in module turbomoleio.output.states)": [[7, "turbomoleio.output.states.get_mos_energies"]], "get_shells() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.get_shells"]], "get_split_jobex_parsers() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.get_split_jobex_parsers"]], "get_value() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.get_value"]], "gradient() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.gradient"]], "grep_line() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.grep_line"]], "has_fractional_occ (turbomoleio.output.states.state property)": [[7, "turbomoleio.output.states.State.has_fractional_occ"]], "has_fractional_occ (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.has_fractional_occ"]], "has_hole (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.has_hole"]], "header() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.header"]], "homo (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.homo"]], "homo_index (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.homo_index"]], "insert() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.insert"]], "integral() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.integral"]], "irrep_indices (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.irrep_indices"]], "irreps (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.irreps"]], "is_uhf (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.is_uhf"]], "is_uhf() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.is_uhf"]], "lumo (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.lumo"]], "lumo_index (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.lumo_index"]], "max_occupation (turbomoleio.output.states.state property)": [[7, "turbomoleio.output.states.State.max_occupation"]], "mp2_data() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.mp2_data"]], "mp2_results() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.mp2_results"]], "n_negative_freqs() (turbomoleio.output.data.aoforcevibrationaldata method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.n_negative_freqs"]], "n_positive_freqs() (turbomoleio.output.data.aoforcevibrationaldata method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.n_positive_freqs"]], "n_states (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.n_states"]], "n_zero_freqs() (turbomoleio.output.data.aoforcevibrationaldata method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.n_zero_freqs"]], "occupations (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.occupations"]], "periodicity_data() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.periodicity_data"]], "plot_energies() (turbomoleio.output.data.scfiterationdata method)": [[7, "turbomoleio.output.data.ScfIterationData.plot_energies"]], "pre_escf_run() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.pre_escf_run"]], "pre_scf_run() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.pre_scf_run"]], "rdgrad_memory() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.rdgrad_memory"]], "relax_conv_info() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.relax_conv_info"]], "relax_gradient_values() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.relax_gradient_values"]], "relax_info() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.relax_info"]], "rij_info() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.rij_info"]], "riper_scf_energies() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.riper_scf_energies"]], "run() (turbomoleio.output.states.eigerrunner method)": [[7, "turbomoleio.output.states.EigerRunner.run"]], "s2() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.s2"]], "scf_energies() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.scf_energies"]], "scf_iterations() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.scf_iterations"]], "spins (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.spins"]], "statpt_info() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.statpt_info"]], "string (turbomoleio.output.parser.parser property)": [[7, "turbomoleio.output.parser.Parser.string"]], "symmetry() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.symmetry"]], "timings() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.timings"]], "to_file() (turbomoleio.output.states.eigerrunner method)": [[7, "turbomoleio.output.states.EigerRunner.to_file"]], "total_electrons (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.total_electrons"]], "turbomoleio.output": [[7, "module-turbomoleio.output"]], "turbomoleio.output.data": [[7, "module-turbomoleio.output.data"]], "turbomoleio.output.files": [[7, "module-turbomoleio.output.files"]], "turbomoleio.output.parser": [[7, "module-turbomoleio.output.parser"]], "turbomoleio.output.states": [[7, "module-turbomoleio.output.states"]], "testfiles (class in turbomoleio.output.tests.test_files)": [[8, "turbomoleio.output.tests.test_files.TestFiles"]], "testfunctions (class in turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.TestFunctions"]], "testparser (class in turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.TestParser"]], "cls_dict_path() (in module turbomoleio.output.tests.test_files)": [[8, "turbomoleio.output.tests.test_files.cls_dict_path"]], "generate_files() (in module turbomoleio.output.tests.test_files)": [[8, "turbomoleio.output.tests.test_files.generate_files"]], "generate_files() (in module turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.generate_files"]], "method() (in module turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.method"]], "parser_and_dict() (in module turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.parser_and_dict"]], "test_aoforcevibrationaldata() (in module turbomoleio.output.tests.test_data)": [[8, "turbomoleio.output.tests.test_data.test_AoforceVibrationalData"]], "test_scfiterationdata() (in module turbomoleio.output.tests.test_data)": [[8, "turbomoleio.output.tests.test_data.test_ScfIterationData"]], "test_closed() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_closed"]], "test_convert_float() (turbomoleio.output.tests.test_parser.testfunctions method)": [[8, "turbomoleio.output.tests.test_parser.TestFunctions.test_convert_float"]], "test_convert_int() (turbomoleio.output.tests.test_parser.testfunctions method)": [[8, "turbomoleio.output.tests.test_parser.TestFunctions.test_convert_int"]], "test_convert_time_string() (turbomoleio.output.tests.test_parser.testfunctions method)": [[8, "turbomoleio.output.tests.test_parser.TestFunctions.test_convert_time_string"]], "test_eiger_runner() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_eiger_runner"]], "test_error_homo() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_error_homo"]], "test_fail_all_done_check() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_fail_all_done_check"]], "test_get_split_jobex_parsers() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_get_split_jobex_parsers"]], "test_get_value() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_get_value"]], "test_grep_line() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_grep_line"]], "test_hole() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_hole"]], "test_no_empty_states() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_no_empty_states"]], "test_parsing_failures() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_parsing_failures"]], "test_properties() (turbomoleio.output.tests.test_files.testfiles method)": [[8, "turbomoleio.output.tests.test_files.TestFiles.test_properties"]], "test_properties() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_properties"]], "test_state() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_state"]], "test_str() (in module turbomoleio.output.tests.test_data)": [[8, "turbomoleio.output.tests.test_data.test_str"]], "test_uhf() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_uhf"]], "turbomoleio.output.tests": [[8, "module-turbomoleio.output.tests"]], "turbomoleio.output.tests.test_data": [[8, "module-turbomoleio.output.tests.test_data"]], "turbomoleio.output.tests.test_files": [[8, "module-turbomoleio.output.tests.test_files"]], "turbomoleio.output.tests.test_parser": [[8, "module-turbomoleio.output.tests.test_parser"]], "turbomoleio.output.tests.test_states": [[8, "module-turbomoleio.output.tests.test_states"]], "itestconfig (class in turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.ItestConfig"]], "itesterror": [[9, "turbomoleio.testfiles.utils.ItestError"]], "assert_msonable() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.assert_MSONable"]], "assert_almost_equal() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.assert_almost_equal"]], "compare_differences() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.compare_differences"]], "define_timeout (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.define_timeout"]], "delete_tmp_dir (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.delete_tmp_dir"]], "dryrun (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.dryrun"]], "dryrun_fpath (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.dryrun_fpath"]], "dryrun_use_ref_control (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.dryrun_use_ref_control"]], "generate_control_for_test() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.generate_control_for_test"]], "generate_ref (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.generate_ref"]], "generate_reference_out_parser_files() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.generate_reference_out_parser_files"]], "generate_reference_output() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.generate_reference_output"]], "get_control_filepath() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.get_control_filepath"]], "get_control_integration() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.get_control_integration"]], "get_sp() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.get_sp"]], "get_tfp() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.get_tfp"]], "gisnan() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.gisnan"]], "has_matplotlib() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.has_matplotlib"]], "run_itest() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.run_itest"]], "temp_dir() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.temp_dir"]], "tol (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.tol"]], "touch_file() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.touch_file"]], "turbomoleio.testfiles": [[9, "module-turbomoleio.testfiles"]], "turbomoleio.testfiles.utils": [[9, "module-turbomoleio.testfiles.utils"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["api/modules", "api/turbomoleio", "api/turbomoleio.core", "api/turbomoleio.core.tests", "api/turbomoleio.input", "api/turbomoleio.input.templates", "api/turbomoleio.input.tests", "api/turbomoleio.output", "api/turbomoleio.output.tests", "api/turbomoleio.testfiles", "appendix", "bugs", "changelog", "coord", "datagroups", "definerunner", "developer/definerunner", "developer/introduction", "developer/parsing_logs", "developer/testing", "developer/versioning", "index", "license", "output_parsing"], "filenames": ["api/modules.rst", "api/turbomoleio.rst", "api/turbomoleio.core.rst", "api/turbomoleio.core.tests.rst", "api/turbomoleio.input.rst", "api/turbomoleio.input.templates.rst", "api/turbomoleio.input.tests.rst", "api/turbomoleio.output.rst", "api/turbomoleio.output.tests.rst", "api/turbomoleio.testfiles.rst", "appendix.rst", "bugs.rst", "changelog.rst", "coord.rst", "datagroups.rst", "definerunner.rst", "developer/definerunner.rst", "developer/introduction.rst", "developer/parsing_logs.rst", "developer/testing.rst", "developer/versioning.rst", "index.rst", "license.rst", "output_parsing.rst"], "titles": ["turbomoleio", "turbomoleio package", "turbomoleio.core package", "turbomoleio.core.tests package", "turbomoleio.input package", "turbomoleio.input.templates package", "turbomoleio.input.tests package", "turbomoleio.output package", "turbomoleio.output.tests package", "turbomoleio.testfiles package", "Appendix", "Reporting bugs", "Changelog", "The coord file", "The data group files", "Running define", "Define runner", "Contributing", "Output logs parsing", "Testing", "Versioning", "turbomoleio", "License", "Outputs parsing"], "terms": {"packag": [0, 10, 11, 12, 13, 15, 17, 18, 19, 20, 21, 22], "subpackag": 0, "core": [0, 1, 7, 13, 14, 16], "submodul": [0, 1], "base": [0, 1, 3, 4, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 21, 22, 23], "modul": [0, 12, 14, 15, 16, 19, 20, 21, 23], "control": [0, 1, 3, 4, 7, 9, 12, 15, 16, 19, 21, 22, 23], "datagroup": [0, 1, 3, 7, 9, 12, 20, 21, 23], "molecul": [0, 1, 3, 7, 13, 15, 19, 21, 23], "period": [0, 1, 7, 12, 21, 23], "symmetri": [0, 1, 7, 14, 15, 23], "util": [0, 1, 6, 7, 15, 16, 19], "content": [0, 14, 22, 23], "input": [0, 1, 2, 7, 12, 14, 15, 16, 18, 19, 20, 21, 23], "defin": [0, 1, 2, 3, 5, 6, 7, 9, 12, 13, 14, 17, 19, 20, 21, 22], "output": [0, 1, 2, 4, 9, 12, 13, 14, 15, 20, 21, 22], "data": [0, 1, 2, 3, 8, 12, 13, 15, 16, 18, 21, 22], "file": [0, 1, 2, 4, 8, 9, 11, 12, 15, 16, 17, 18, 19, 20, 21, 22], "parser": [0, 1, 8, 9, 18, 19, 21, 23], "state": [0, 1, 2, 4, 14, 15, 21, 22], "testfil": [0, 1, 7, 8, 12, 18, 19], "test": [1, 2, 4, 7, 9, 15, 17, 21], "test_control": [1, 2], "test_datagroup": [1, 2], "test_molecul": [1, 2], "test_period": [1, 2], "test_util": [1, 2, 4], "basesystem": [1, 2], "coord_lin": [1, 2], "to_coord_fil": [1, 2], "to_coord_str": [1, 2], "to_fil": [1, 2, 7, 14], "get_coord_lin": [1, 2], "get_mol_and_indices_frozen": [1, 2], "add_cosmo": [1, 2, 16], "cpc": [1, 2, 14], "energi": [1, 2, 7, 14, 15, 18, 21, 23], "from_fil": [1, 2, 7, 13, 14, 18, 23], "from_metr": [1, 2], "get_charg": [1, 2, 14], "get_shel": [1, 2, 7, 14], "get_subfiles_list": [1, 2], "gradient": [1, 2, 7, 12, 14, 23], "is_uhf": [1, 2, 7], "remove_last_energi": [1, 2], "remove_last_gradi": [1, 2], "set_disp": [1, 2, 14, 16], "default": [1, 2, 4, 7, 9, 14, 15, 18, 19], "metric": [1, 2, 4, 15], "delta_": [1, 2], "from_str": [1, 2, 7, 18], "n_step": [1, 2, 7], "plot": [1, 2, 7, 14, 23], "last_grad_max": [1, 2], "last_grad_norm": [1, 2], "max_gradi": [1, 2], "norm": [1, 2, 7], "shell": [1, 2, 7, 14, 15], "as_dict": [1, 2, 7, 23], "from_dict": [1, 2, 7, 23], "irrep": [1, 2, 7, 15], "to_datagroup": [1, 2], "total_electron": [1, 2, 7], "adg": [1, 2, 14], "cdg": [1, 2, 9, 14, 15], "kdg": [1, 2, 14], "mdgo": [1, 2, 14], "sdg": [1, 2, 14], "sdgo": [1, 2, 14], "add_data_group": [1, 2, 14], "change_data_group": [1, 2, 14, 16], "compar": [1, 2, 3, 7, 8, 9, 18, 19], "empti": [1, 2, 7, 14, 15, 23], "kill_data_group": [1, 2, 14], "modify_data_group_opt": [1, 2, 14], "ndg": [1, 2], "number_of_data_group": [1, 2], "show_data_group": [1, 2, 14], "show_data_group_opt": [1, 2, 14], "show_subfile_fnam": [1, 2], "cleanup_str": [1, 2], "compare_datagroup_str": [1, 2], "remove_com": [1, 2], "remove_dg_from_list": [1, 2], "split_string_to_dg_list": [1, 2], "bondangl": [1, 2], "compute_valu": [1, 2], "coord_str": [1, 2], "coord_typ": [1, 2], "n_atom": [1, 2], "collinearbendingangl": [1, 2], "dihedralangl": [1, 2], "distanc": [1, 2, 7, 13, 15], "internaldefinit": [1, 2, 13], "get_subclass_from_str": [1, 2], "is_valid": [1, 2], "to_str": [1, 2], "inversedist": [1, 2], "moleculesystem": [1, 2, 13, 21], "add_bond_angl": [1, 2, 13], "add_dihedr": [1, 2], "add_dist": [1, 2, 13], "get_int_def_inconsist": [1, 2], "has_inconsist": [1, 2], "outofplaneangl": [1, 2], "perpendicularbendingangl": [1, 2], "periodicsystem": [1, 2, 12, 13], "structur": [1, 2, 3, 7, 9, 12, 13, 14, 18, 19, 21], "define_quit": [1, 2], "get_tm_vers": [1, 2], "templat": [1, 4, 6, 12, 15], "test_defin": [1, 4], "defineerror": [1, 4, 15, 16], "defineexpecterror": [1, 4, 15], "defineirederror": [1, 4], "defineparametererror": [1, 4], "definerunn": [1, 4, 6, 9, 16, 19, 21], "dump_command_fil": [1, 4], "run_ful": [1, 4, 15, 16], "run_generate_mo_fil": [1, 4, 15, 16], "run_update_internal_coord": [1, 4, 15, 16], "unsupporteddefinestateerror": [1, 4], "parametersvalidationerror": [1, 4], "ex_sett": [1, 4], "get_define_templ": [1, 4, 15], "schema_define_param": [1, 4, 16], "validate_paramet": [1, 4, 15], "test_data": [1, 7], "test_fil": [1, 7, 18], "test_pars": [1, 7, 18], "test_stat": [1, 7], "aoforcenumericalintegrationdata": [1, 7, 23], "from_pars": [1, 7, 18, 23], "aoforcerotationaldata": [1, 7, 23], "aoforcevibrationaldata": [1, 7, 23], "get_freqs_df": [1, 7], "n_negative_freq": [1, 7], "n_positive_freq": [1, 7], "n_zero_freq": [1, 7], "basedata": [1, 7, 9, 18], "basisdata": [1, 7, 23], "cosmodata": [1, 7, 23], "dftdata": [1, 7, 23], "dispersioncorrectiondata": [1, 7, 23], "electrostaticmomentsdata": [1, 7, 23], "escfdata": [1, 7, 23], "escfiterationdata": [1, 7, 23], "functionaldata": [1, 7, 23], "geometrydata": [1, 7, 23], "integraldata": [1, 7, 23], "mp2data": [1, 7, 23], "mp2result": [1, 7, 23], "periodicitydata": [1, 7, 23], "relaxconvergencedata": [1, 7, 23], "relaxdata": [1, 7, 23], "relaxgradientsdata": [1, 7, 23], "ridata": [1, 7, 23], "rundata": [1, 7, 23], "scfdata": [1, 7, 23], "scfenergiesdata": [1, 7, 18, 23], "scfiterationdata": [1, 7, 23], "plot_energi": [1, 7, 23], "singleexcit": [1, 7], "smearingdata": [1, 7, 23], "spindata": [1, 7, 23], "statptdata": [1, 7, 23], "symmetrydata": [1, 7, 23], "turbomoledata": [1, 7, 23], "aoforceoutput": [1, 7, 23], "egradoutput": [1, 7, 23], "escfonlyoutput": [1, 7, 18, 23], "escfoutput": [1, 7, 23], "gradoutput": [1, 7, 23], "jobexoutput": [1, 7, 23], "mp2output": [1, 7, 23], "relaxoutput": [1, 7, 23], "ricc2output": [1, 7, 23], "scfoutput": [1, 7, 23], "statptoutput": [1, 7, 23], "all_don": [1, 7], "aoforce_analysi": [1, 7], "aoforce_numerical_integr": [1, 7], "basi": [1, 2, 4, 7, 15, 18, 23], "center": [1, 7, 23], "coordin": [1, 2, 4, 7, 12, 13, 15], "cosmo_head": [1, 7], "cosmo_result": [1, 7], "density_functional_data": [1, 7], "dftd": [1, 7], "egrad_excited_st": [1, 7], "electrostatic_mo": [1, 7], "escf_excit": [1, 7], "escf_gs_total_en": [1, 7], "escf_iter": [1, 7], "fermi": [1, 7], "get_split_jobex_pars": [1, 7], "get_valu": [1, 7], "grep_lin": [1, 7], "header": [1, 2, 7, 18], "integr": [1, 7, 9, 16, 17, 21, 23], "mp2_data": [1, 7], "mp2_result": [1, 7], "periodicity_data": [1, 7], "pre_escf_run": [1, 7], "pre_scf_run": [1, 7], "rdgrad_memori": [1, 7], "relax_conv_info": [1, 7], "relax_gradient_valu": [1, 7], "relax_info": [1, 7], "rij_info": [1, 7], "riper_scf_energi": [1, 7], "s2": [1, 7], "scf_energi": [1, 7], "scf_iter": [1, 7], "statpt_info": [1, 7], "string": [1, 2, 3, 4, 6, 7, 8, 9, 14, 15, 16, 18, 20, 23], "time": [1, 4, 7, 14, 15, 19, 22, 23], "convert_float": [1, 7], "convert_int": [1, 7], "convert_time_str": [1, 7], "eigeroutput": [1, 7], "compare_st": [1, 7], "eigerrunn": [1, 7], "get_eiger_output": [1, 7], "run": [1, 2, 4, 7, 9, 12, 14, 16, 18, 19, 21, 22], "has_fractional_occ": [1, 7], "max_occup": [1, 7], "eigenvalu": [1, 7, 19, 23], "filter_st": [1, 7], "gap": [1, 7, 23], "generate_lowest_filled_st": [1, 7], "has_hol": [1, 7, 23], "homo": [1, 7], "homo_index": [1, 7], "insert": [1, 7, 15], "irrep_indic": [1, 7], "lumo": [1, 7], "lumo_index": [1, 7], "n_state": [1, 7], "occup": [1, 2, 7, 23], "spin": [1, 7, 23], "get_mos_energi": [1, 7], "itestconfig": [1, 9], "define_timeout": [1, 9], "delete_tmp_dir": [1, 3, 6, 8, 9, 19], "dryrun": [1, 9, 19], "dryrun_fpath": [1, 9], "dryrun_use_ref_control": [1, 9], "generate_ref": [1, 9], "tol": [1, 2, 7, 9, 19], "itesterror": [1, 9], "assert_mson": [1, 9], "assert_almost_equ": [1, 9, 19], "compare_differ": [1, 9], "generate_control_for_test": [1, 9], "generate_reference_out_parser_fil": [1, 9], "generate_reference_output": [1, 9], "get_control_filepath": [1, 9], "get_control_integr": [1, 9], "get_sp": [1, 9], "get_tfp": [1, 9], "gisnan": [1, 9], "has_matplotlib": [1, 9], "run_itest": [1, 9, 19], "temp_dir": [1, 9, 19], "touch_fil": [1, 9], "i": [1, 2, 3, 4, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "act": [1, 14], "an": [1, 2, 4, 7, 9, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "interfac": [1, 4, 9, 12, 21, 22], "turbomol": [1, 2, 7, 9, 11, 12, 13, 14, 15, 16, 18, 20, 21, 23], "It": [1, 2, 3, 7, 14, 15, 17, 18, 19, 22], "allow": [1, 2, 4, 7, 8, 9, 13, 14, 15, 16, 18, 19, 22], "gener": [1, 2, 4, 7, 8, 9, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23], "pars": [1, 2, 7, 8, 12, 13, 14, 16, 20, 21], "easili": [1, 7, 15, 18, 19, 23], "thi": [1, 2, 4, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "root": [1, 7, 19, 23], "testcontrol": [2, 3], "test_add_cosmo": [2, 3, 4, 6], "test_cpc": [2, 3], "test_disp": [2, 3], "test_energi": [2, 3], "test_from_fil": [2, 3], "test_from_metr": [2, 3], "test_get_charg": [2, 3], "test_get_shel": [2, 3], "test_get_subfiles_list": [2, 3], "test_gradi": [2, 3], "test_is_uhf": [2, 3], "test_remove_energi": [2, 3], "test_remove_energy_in_control": [2, 3], "test_remove_gradi": [2, 3], "test_remove_gradient_in_control": [2, 3], "testdatagroupfunct": [2, 3], "pytestmark": [2, 3, 19], "test_adg": [2, 3], "test_cdg": [2, 3], "test_kdg": [2, 3], "test_mdgo": [2, 3], "test_sdg": [2, 3], "test_sdgo": [2, 3], "testenergi": [2, 3], "test_energy_mp2": [2, 3], "test_energy_scf": [2, 3], "testgradi": [2, 3], "test_empty_gradi": [2, 3], "test_fail_pars": [2, 3], "testshel": [2, 3], "test_clos": [2, 3, 4, 6, 7, 8], "test_fract": [2, 3], "test_uhf": [2, 3, 7, 8], "check_equivalent_dg": [2, 3], "test_cleanup": [2, 3], "test_compar": [2, 3], "test_compare_datagroup_str": [2, 3], "test_empti": [2, 3], "test_modify_data_group_opt": [2, 3], "test_remove_com": [2, 3], "test_remove_dg_from_list": [2, 3], "test_sdg_subfil": [2, 3], "test_show_data_group_opt": [2, 3], "test_show_subfile_fnam": [2, 3], "test_split_string_to_dg_list": [2, 3], "testinternaldefinit": [2, 3], "test_bond_angl": [2, 3], "test_collinear_bending_angl": [2, 3], "test_dihedral_angl": [2, 3], "test_dist": [2, 3], "test_from_str": [2, 3], "test_inverse_dist": [2, 3], "test_out_of_plane_angl": [2, 3], "test_perpendicular_bending_angl": [2, 3], "testmoleculesystem": [2, 3], "test_add_bond_angl": [2, 3], "test_add_dihedr": [2, 3], "test_add_dist": [2, 3], "test_check_index": [2, 3], "test_disord": [2, 3], "test_dummy_atom": [2, 3], "test_to_coord_str": [2, 3], "test_to_fil": [2, 3], "check_dg": [2, 3], "check_user_defined_bonds_dg": [2, 3], "testperiodicsystem": [2, 3], "test_periodic_2d": [2, 3], "test_periodic_3d": [2, 3], "test_periodic_wrong_rot": [2, 3], "test_read_periodic_2d": [2, 3], "testgetvers": [2, 3], "test_v72": [2, 3], "test_v731": [2, 3], "test_v741": [2, 3], "test_v751": [2, 3], "object": [2, 3, 4, 6, 7, 8, 9, 12, 13, 15, 16, 17, 18, 19, 21, 22], "repres": [2, 3, 7, 13, 15, 19, 22], "physic": [2, 7, 19, 22], "system": [2, 4, 7, 12, 14, 15, 19, 21, 22, 23], "class": [2, 3, 4, 6, 7, 8, 9, 18, 19, 22, 23], "molecule_or_structur": 2, "frozen_indic": [2, 13], "none": [2, 4, 6, 7, 8, 9, 14, 15, 18, 23], "0": [2, 4, 7, 9, 13, 19, 20, 21, 22, 23], "sourc": [2, 3, 4, 6, 7, 8, 9, 17, 19, 21, 22], "msonabl": [2, 7, 9, 21, 23], "common": [2, 7, 15, 18, 21, 22], "construct": [2, 4, 7, 8, 15], "paramet": [2, 3, 4, 6, 7, 8, 9, 16, 19, 21], "pymatgen": [2, 13, 21], "set": [2, 3, 4, 7, 9, 13, 14, 15, 16, 18, 19, 21, 23], "indic": [2, 7, 13, 22], "atom": [2, 7, 12, 13, 15], "should": [2, 3, 4, 6, 7, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "have": [2, 6, 13, 14, 15, 17, 18, 19, 21, 22, 23], "fix": [2, 16, 19, 20, 21, 22], "cartesian": [2, 7, 13], "1": [2, 7, 9, 13, 15, 19, 20, 21, 22, 23], "2": [2, 4, 7, 9, 13, 15, 19, 21, 22], "3": [2, 7, 13, 15, 17, 19, 20, 21, 22], "give": [2, 11, 19, 22], "line": [2, 3, 7, 13, 14, 15, 18, 19, 22], "coord": [2, 3, 4, 7, 9, 14, 15, 19, 21], "intern": [2, 4, 7, 13, 14, 15, 16, 23], "return": [2, 3, 4, 6, 7, 9, 14, 15, 16, 18, 19, 22, 23], "list": [2, 3, 4, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 22, 23], "type": [2, 3, 4, 7, 8, 9, 13, 14, 15, 16, 21, 22, 23], "filepath": [2, 4, 7], "write": [2, 7, 14, 18, 21, 22], "str": [2, 3, 4, 7, 9, 15], "path": [2, 4, 7, 9, 14, 15, 16, 19, 23], "abstract": [2, 7, 17, 18], "creat": [2, 4, 7, 9, 12, 15, 16, 18, 19, 20, 23], "implement": [2, 4, 9, 14, 15, 16, 17, 18, 19, 22, 23], "separ": [2, 6, 8, 14, 19, 22], "fmt": 2, "depend": [2, 4, 7, 15, 18, 19], "specifi": [2, 7, 9, 11, 14, 15, 22], "format": [2, 7, 13, 14, 17, 19, 21, 22], "The": [2, 3, 4, 7, 8, 9, 16, 17, 18, 20, 21, 22], "can": [2, 4, 7, 9, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "ani": [2, 7, 9, 14, 15, 16, 19, 22], "other": [2, 4, 6, 7, 8, 9, 13, 14, 15, 16, 17, 18, 19, 22, 23], "support": [2, 7, 9, 14, 15, 17, 18, 19, 20, 22], "could": [2, 7, 13, 16, 18, 19, 22, 23], "If": [2, 4, 7, 8, 9, 14, 15, 16, 18, 19, 22, 23], "code": [2, 4, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "would": [2, 7, 13, 15, 16, 17, 18, 19, 22, 23], "try": [2, 11, 14, 16], "infer": 2, "from": [2, 3, 4, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "name": [2, 3, 4, 7, 8, 9, 14, 15, 16, 18, 19, 22, 23], "contain": [2, 7, 9, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23], "convert": [2, 4, 7, 9, 14, 17, 18, 23], "frozen": [2, 7, 13], "f": [2, 7, 13, 22], "append": [2, 9, 13, 19], "end": [2, 4, 7, 9, 13, 14, 15, 18, 22], "cell_str": 2, "periodic_str": 2, "lattice_str": 2, "periodic_extens": 2, "5": [2, 12, 13, 15, 19, 20, 21, 22], "get": [2, 6, 7, 9, 14, 18, 19, 22], "cell": 2, "For": [2, 7, 11, 13, 14, 15, 16, 18, 19, 20, 22, 23], "1d": [2, 7], "consist": [2, 12, 22], "singl": [2, 7, 9, 14, 15, 18, 19, 20, 22, 23], "number": [2, 3, 7, 9, 14, 15, 20, 22], "lattic": [2, 7, 12], "2d": [2, 7], "b": [2, 4, 7, 14, 15, 22], "gamma": [2, 7], "angl": [2, 7], "between": [2, 7, 9, 14, 15, 19, 21, 22], "3d": [2, 7], "6": [2, 7, 15, 19, 21, 22], "c": [2, 7, 14, 15, 22], "alpha": [2, 7, 14, 15], "beta": [2, 7, 14, 15], "onli": [2, 4, 7, 8, 9, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "both": [2, 9, 14, 18, 19, 22, 23], "describ": [2, 4, 7, 14, 16, 17, 18, 19, 23], "matrix": [2, 7, 15], "float": [2, 3, 4, 7, 9, 15, 18], "amount": [2, 19, 21], "angstrom": [2, 7, 13, 15], "artifici": 2, "ad": [2, 14, 15, 16, 18, 19, 21, 22], "vacuum": 2, "non": [2, 7, 22], "direct": [2, 7, 19, 22], "when": [2, 4, 7, 13, 14, 15, 16, 17, 18, 19, 20, 22], "ar": [2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "provid": [2, 4, 7, 8, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "namedtupl": [2, 7], "function": [2, 3, 4, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 20, 22, 23], "interact": [2, 14, 15, 22, 23], "directli": [2, 7, 14, 15, 16, 18, 19, 22, 23], "also": [2, 4, 7, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "relat": [2, 4, 12, 15, 23], "e": [2, 4, 7, 11, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "g": [2, 4, 7, 11, 14, 15, 18, 19, 20, 23], "etc": 2, "dg_list": [2, 14], "us": [2, 4, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "store": [2, 7, 8, 9, 12, 13, 14, 15, 18, 19, 20, 21, 23], "group": [2, 3, 13, 15, 16, 18, 19, 21, 23], "A": [2, 7, 8, 12, 14, 15, 17, 18, 19, 22], "kei": [2, 7, 9, 14, 15, 22], "valu": [2, 3, 4, 7, 8, 9, 13, 15, 16, 18, 19, 21, 23], "pair": 2, "specif": [2, 4, 6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "mai": [2, 6, 7, 12, 14, 18, 19, 22], "seri": [2, 14, 18, 19, 20, 21, 23], "combin": [2, 7, 15, 18, 22], "thereof": 2, "initi": [2, 7, 14, 19, 22, 23], "usual": [2, 7, 14, 15, 18, 23], "read": [2, 7, 13, 14, 19, 20, 21, 22, 23], "epsilon": [2, 4, 7, 15], "nppa": [2, 4, 7, 15], "nspa": [2, 4, 7, 15], "disex": [2, 4, 7, 15], "rsolv": [2, 4, 7, 15], "routf": [2, 4, 7, 15], "caviti": [2, 4, 7, 15], "use_old_amat": [2, 4, 15], "add": [2, 7, 14, 15, 16, 18, 19, 20, 22], "cosmo": [2, 3, 7, 15, 23], "keyword": [2, 7, 9, 14, 15], "option": [2, 4, 7, 9, 13, 14, 15, 16, 18, 19, 22, 23], "all": [2, 3, 4, 6, 7, 8, 9, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "written": [2, 4, 13, 14, 17, 19, 22, 23], "permitt": [2, 15], "scale": [2, 15], "screen": [2, 7, 15], "charg": [2, 4, 7, 15, 18, 22, 23], "int": [2, 4, 7, 15], "grid": [2, 7, 15, 23], "point": [2, 7, 15, 16, 18, 19, 20], "per": [2, 7, 15], "segment": [2, 15], "threshold": [2, 7, 15, 23], "element": [2, 3, 7, 9, 14, 15], "outer": [2, 15], "solvent": [2, 15], "sphere": [2, 15], "factor": [2, 7, 15], "outli": [2, 15], "correct": [2, 7, 8, 9, 12, 14, 15, 16, 19, 22, 23], "accept": [2, 15, 16, 17, 18, 22], "open": [2, 11, 14, 15, 21], "leav": [2, 15, 19], "untidi": [2, 15], "seam": [2, 15], "close": [2, 7, 14, 15, 22], "pave": [2, 15], "intersect": [2, 15], "bool": [2, 4, 7, 8, 9, 15], "true": [2, 3, 4, 7, 8, 9, 13, 14, 15, 19], "setup": [2, 15, 19, 20], "7": [2, 12, 15, 19, 20, 21, 22], "dest_dir": 2, "force_overwrit": 2, "fals": [2, 4, 7, 8, 9, 14, 15, 19], "copi": [2, 4, 15, 22], "referenc": [2, 19], "here": [2, 7, 8, 9, 14, 16, 17, 18, 19, 23], "destin": 2, "folder": [2, 4, 8, 9, 12, 14, 15, 17, 18, 19], "alreadi": [2, 4, 8, 14, 15, 16, 18, 19, 22], "exist": [2, 9, 13, 14, 15, 16, 18, 19], "present": [2, 4, 7, 13, 14, 15, 17, 19, 22], "overwritten": [2, 8], "properti": [2, 7, 8, 13, 18, 22, 23], "absent": [2, 7], "miss": [2, 7, 14, 15, 18], "classmethod": [2, 7], "filenam": [2, 7, 9], "given": [2, 3, 4, 7, 9, 13, 14, 15, 16, 18, 19, 20, 22, 23], "which": [2, 7, 8, 9, 11, 13, 14, 16, 18, 19, 22, 23], "new": [2, 7, 11, 12, 14, 15, 16, 17, 20, 21, 22], "redund_inp": 2, "extract": [2, 7, 12, 14, 15, 18, 19, 21, 23], "xxx": 2, "shells_typ": 2, "instanc": [2, 7, 9, 13, 14, 15, 16, 18, 23], "form": [2, 9, 13, 15, 22, 23], "grad": [2, 7, 12, 23], "determin": [2, 7, 9, 13, 14, 15, 19, 22, 23], "uhf": [2, 7, 14, 15, 23], "backup_suffix": 2, "remov": [2, 3, 7, 9, 14, 18, 19, 22], "last": [2, 7, 13, 23], "step": [2, 7, 14, 15, 22, 23], "In": [2, 3, 7, 8, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "addit": [2, 3, 9, 12, 13, 14, 15, 16, 18, 19, 20, 22, 23], "origin": [2, 9, 14, 19, 22], "locat": [2, 17, 19], "n": [2, 4, 13, 15], "extern": [2, 11, 19, 23], "call": [2, 6, 7, 13, 14, 15, 16, 18, 19, 22, 23], "current": [2, 4, 7, 12, 14, 15, 17, 18, 19, 21], "modif": [2, 9, 12, 19, 20, 22], "been": [2, 4, 6, 7, 12, 15, 16, 18, 19, 21, 22, 23], "done": [2, 6, 7, 8, 13, 14, 15, 16, 19], "well": [2, 12, 13, 15, 18, 19, 20, 22, 23], "case": [2, 3, 4, 7, 8, 9, 14, 15, 16, 17, 18, 19, 22], "ignor": [2, 3, 7, 15], "rais": [2, 3, 4, 7, 9, 14, 15, 16, 19], "runtimeerror": [2, 7], "dispersion_correct": [2, 7], "dispers": [2, 7, 14, 15, 23], "method": [2, 4, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 22, 23], "dft": [2, 4, 7, 14, 15, 23], "d1": [2, 4, 7, 15], "d2": [2, 4, 7, 15], "d3": [2, 4, 15], "bj": [2, 4, 15], "insensit": 2, "disp": [2, 4, 15], "elimin": 2, "collect": [2, 19, 22, 23], "tm": [2, 7], "execut": [2, 4, 7, 9, 14, 15, 16, 18, 19, 20, 21, 22, 23], "some": [2, 4, 7, 9, 12, 14, 15, 16, 18, 19, 22, 23], "scf": [2, 7, 15, 23], "scfkin": 2, "scfpot": 2, "mp2": [2, 4, 7, 12, 15, 23], "calcul": [2, 7, 8, 9, 12, 13, 15, 16, 18, 19, 21, 23], "kinet": [2, 7], "contribut": [2, 7, 11, 16, 19, 23], "potenti": [2, 7, 13, 16, 18], "total": [2, 7], "count": 2, "variat": 2, "less": [2, 23], "than": [2, 7, 14, 15, 18, 22, 23], "come": [2, 7, 15, 18, 19, 22, 23], "subfil": [2, 14, 23], "ax": [2, 7], "kwarg": [2, 3, 7], "evolut": [2, 7, 14], "matplotlib": [2, 7, 9], "figur": [2, 7, 15], "argument": [2, 4, 7, 9, 14, 15, 19], "pass": [2, 4, 7, 9, 14, 15, 16, 19, 22], "displai": [2, 7, 22], "mean": [2, 7, 12, 14, 18, 19, 22, 23], "titl": [2, 4, 7, 15], "show": [2, 7, 22], "savefig": [2, 7], "abc": [2, 7, 23], "png": [2, 7], "ep": [2, 7], "save": [2, 7], "size_kwarg": [2, 7], "dictionari": [2, 4, 7, 9, 14, 15, 16, 18, 23], "fig": [2, 7], "set_size_inch": [2, 7], "dict": [2, 4, 7, 9, 15], "w": [2, 7, 22], "h": [2, 7], "4": [2, 4, 7, 12, 13, 15, 19, 20, 21, 22], "tight_layout": [2, 7], "ax_grid": [2, 7], "left": [2, 7], "unchang": [2, 7], "ax_annot": [2, 7], "label": [2, 7], "subplot": [2, 7], "fig_clos": [2, 7], "lattice_vector": 2, "lattice_gradi": 2, "shape": [2, 7], "nstep": 2, "natom": [2, 7], "each": [2, 7, 9, 13, 14, 15, 18, 19, 22, 23], "perform": [2, 6, 7, 9, 12, 13, 14, 15, 16, 18, 19, 22, 23], "riper": [2, 7, 12, 23], "vector": [2, 7], "size": [2, 7, 15, 23], "dimension": [2, 12, 13], "one": [2, 3, 4, 7, 8, 9, 13, 14, 15, 16, 18, 19, 22, 23], "note": [2, 7, 9, 12, 13, 14, 15, 18, 19, 21, 23], "either": [2, 18, 19, 22], "differ": [2, 3, 7, 8, 9, 13, 14, 15, 16, 18, 19, 20, 22, 23], "One": [2, 7], "thu": [2, 15, 16, 18, 19, 20, 22, 23], "gradlatt": 2, "maximum": [2, 4, 7, 15], "largest": 2, "map": 2, "handl": [2, 4, 7, 12, 18], "integ": [2, 4], "fraction": [2, 7, 19], "presenc": [2, 14, 19], "same": [2, 3, 7, 13, 14, 18, 19, 22, 23], "multipl": [2, 7, 15, 19], "tupl": [2, 7, 8, 9, 13], "irrep_index": [2, 7], "occupi": [2, 7, 14, 23], "json": [2, 3, 7, 8, 9, 15, 18, 19, 21], "serializ": [2, 7], "represent": [2, 7, 14, 23], "d": [2, 7, 19, 22], "serial": [2, 12, 18, 19], "valueerror": [2, 7], "exampl": [2, 7, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "a1": [2, 7, 15], "b1": [2, 7], "b2": [2, 7], "irreduc": [2, 7, 14, 23], "electron": [2, 7, 15, 22], "data_group": [2, 14], "data_block": [2, 14], "backup_fil": 2, "comment": [2, 3, 14, 15, 17], "dollar": [2, 14], "sign": [2, 14, 22], "automat": [2, 7, 12, 13, 14, 16, 17, 19, 22], "block": [2, 14], "correspond": [2, 7, 8, 13, 14, 16, 18, 19, 20, 22], "back": [2, 9, 19, 23], "up": [2, 14, 15, 18, 19], "backup": 2, "replac": [2, 14, 19], "equival": [2, 3, 7, 9, 14, 18, 19, 22], "To": [2, 14, 19, 20, 22], "explicit": [2, 9, 14, 19], "simpli": [2, 7, 14, 16, 18], "control_dir": 2, "its": [2, 4, 7, 8, 13, 14, 15, 16, 19, 22, 23], "anoth": [2, 14, 19], "doe": [2, 14, 15, 22, 23], "directori": [2, 4, 7, 9, 14, 15, 19], "dir": 2, "strict": [2, 14, 19], "exact": [2, 14, 18, 22], "match": [2, 6, 7, 14, 19], "start": [2, 7, 14, 15, 16, 18, 19, 20, 21, 22], "modifi": [2, 7, 15, 16, 18, 19, 20, 21, 22], "sever": [2, 7, 18, 19, 21, 23], "updat": [2, 4, 7, 12, 14, 15, 18, 19, 20, 22], "accord": [2, 4, 7, 14, 15, 16, 17, 22], "option_name1": 2, "option_valu": 2, "option_name2": 2, "identifi": [2, 7, 9, 14, 16, 19, 20, 22], "entir": [2, 14, 18, 19, 22], "sinc": [2, 9, 14, 15, 16, 17, 18, 19, 23], "wai": [2, 4, 7, 14, 15, 16, 18, 19, 21, 22, 23], "attempt": [2, 22], "made": [2, 18, 22], "suitabl": [2, 7, 16, 17, 18, 19], "respons": [2, 14, 15, 16, 22], "caller": 2, "safer": 2, "chang": [2, 4, 7, 8, 13, 14, 17, 18, 20, 21, 22], "show_from_subfil": [2, 14], "raise_if_multiple_subfil": 2, "raise_if_missing_subfil": 2, "raise_if_regular_and_subfil": 2, "full": [2, 7, 9, 14, 15, 16, 21, 22], "just": [2, 14, 15, 18, 23], "so": [2, 14, 15, 16, 18, 19, 21, 22, 23], "correctli": [2, 18, 19], "within": [2, 7, 9, 15, 22], "suppos": 2, "whether": [2, 7, 9, 19, 22], "error": [2, 4, 7, 9, 14, 15, 16, 19], "standard": [2, 4, 7, 14, 15, 17, 22], "refer": [2, 3, 8, 9, 12, 13, 14, 16, 18, 19, 22], "regular": [2, 18, 23], "select": [2, 7, 14, 15], "found": [2, 4, 7, 9, 14, 17, 18, 19, 21, 22, 23], "includ": [2, 7, 14, 16, 21, 22], "anyth": [2, 22], "after": [2, 7, 14, 15, 16, 18, 19, 22], "symbol": [2, 7, 13, 14], "like": [2, 4, 7, 8, 9, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23], "queri": 2, "model": [2, 22], "manipul": 2, "convent": [2, 13, 14, 16, 17, 19], "fashion": [2, 22], "mani": 2, "human": 2, "readabl": [2, 22], "ascii": 2, "formal": 2, "split": [2, 3, 7, 14], "optim": [2, 7, 13, 14], "associ": [2, 7, 22, 23], "word": [2, 14], "veri": [2, 16, 18, 19], "larg": [2, 15], "molecular": [2, 4, 7, 15], "orbit": [2, 4, 7, 15, 23], "scfmo": [2, 23], "mo": [2, 7, 15], "complet": [2, 4, 7, 13, 14, 15, 16, 23], "descript": [2, 7, 16, 19, 23], "user": [2, 3, 8, 13, 14, 15, 16, 17, 18, 22, 23], "": [2, 7, 16, 18, 21, 22], "manual": [2, 15], "avail": [2, 4, 7, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23], "unnecessari": [2, 22], "space": [2, 3, 7, 14], "kept": [2, 18, 19], "appli": [2, 12, 14, 15, 19, 22], "interfer": 2, "actual": [2, 7, 9, 15, 19, 22], "alwai": [2, 4, 7, 9, 13, 14, 16, 18, 19], "first": [2, 3, 4, 7, 9, 12, 14, 16, 18, 19, 22, 23], "move": [2, 14, 19], "befor": [2, 4, 7, 9, 14, 15, 16, 18, 19, 21, 23], "ignored_dg": 2, "return_all_diff": 2, "asid": [2, 19], "two": [2, 3, 7, 9, 15, 19, 22], "chunk": [2, 7], "exactli": [2, 6, 18, 19], "except": [2, 3, 4, 6, 7, 9, 14, 15, 17, 19, 22], "thei": [2, 4, 7, 9, 13, 14, 17, 18, 19, 21, 22, 23], "lower": [2, 7, 19, 23], "toler": [2, 7, 9, 15, 18, 19], "otherwis": [2, 4, 7, 15, 18, 19, 22], "messag": [2, 4, 7, 9], "caus": [2, 22], "fail": [2, 3, 4, 7, 8, 9, 15, 16, 19, 22, 23], "varieti": [2, 15], "notat": [2, 7], "intend": [2, 19, 22], "more": [2, 13, 14, 16, 17, 18, 19, 21, 22, 23], "purpos": [2, 22], "rather": 2, "tool": [2, 4, 16, 19, 21, 22], "guarante": [2, 22], "even": [2, 4, 7, 9, 15, 16, 19, 22], "comparison": [2, 3, 9, 19], "expect": [2, 4, 6, 7, 9, 12, 15, 16, 19, 22], "skip": [2, 4, 9, 16], "result": [2, 7, 13, 14, 15, 19, 22, 23], "occurr": [2, 7], "coexist": 2, "shown": [2, 14, 19], "anywai": [2, 15, 19], "cleanup_typ": 2, "clean": [2, 12, 14], "everyth": [2, 14], "blank": [2, 14], "tab": [2, 14], "typic": [2, 14, 15, 22], "cleanup": [2, 3], "valid": [2, 4, 7, 14, 21, 22], "before_first_dollar": 2, "blank_lin": 2, "leading_spaces_dollar": 2, "leading_spaces_hash": 2, "four": 2, "hash": 2, "preced": [2, 7], "charact": 2, "dg1": [2, 3], "dg2": [2, 3], "second": [2, 3, 7, 15, 19, 23], "comment_typ": 2, "inform": [2, 4, 7, 11, 12, 13, 18, 19, 22, 23], "three": [2, 7, 15, 22, 23], "dummi": [2, 14], "span": 2, "inlin": [2, 14], "newlin": 2, "hash_start": 2, "after_end": 2, "hash_inlin": 2, "without": [2, 4, 8, 12, 13, 14, 18, 19, 22], "dg_to_remov": 2, "duplic": 2, "usag": 2, "follow": [2, 4, 7, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "remove_comment_typ": 2, "five": 2, "incorrectli": 2, "respect": [2, 7, 14, 19, 22, 23], "redund": [2, 13, 18], "off": [2, 7, 16], "global": [2, 19], "statu": [2, 13, 22], "weight": 2, "bond": [2, 3, 13], "bend": [2, 13], "k": [2, 13, 19], "involv": [2, 18], "linear": 2, "consid": [2, 4, 7, 14, 15, 16, 18, 19, 22, 23], "length": [2, 7], "collinear": 2, "linc": 2, "dihedr": 2, "tor": [2, 13], "stre": [2, 13], "definit": [2, 7, 9, 12, 13, 15, 19, 22], "establish": 2, "notimpl": 2, "concret": 2, "subclass": [2, 7, 9, 13, 14, 15, 16, 18, 19, 23], "intdef": [2, 3, 13], "static": [2, 6], "appropri": [2, 18, 19, 22], "0001": [2, 9], "check": [2, 3, 4, 6, 7, 9, 12, 14, 15, 16, 18, 19, 23], "posit": [2, 7], "index": [2, 7, 21, 23], "prepend": [2, 14], "insid": [2, 9, 15, 16, 18, 19, 22], "invers": 2, "invr": 2, "int_def": [2, 13], "user_defined_bond": [2, 13], "about": [2, 7, 11, 13, 15, 16, 18, 19, 21, 22, 23], "geometri": [2, 4, 7, 13, 14, 15, 23], "dynam": [2, 13, 15, 22], "while": [2, 13, 14, 15, 16, 18, 19], "constraint": [2, 18], "attribut": [2, 9, 13, 14, 15, 16, 18, 19, 22, 23], "notabl": 2, "inconsist": 2, "obtain": [2, 7, 8, 14, 18, 23], "order": [2, 3, 6, 7, 15, 16, 19, 22, 23], "index1": [2, 13], "index2": [2, 13], "where": [2, 4, 7, 13, 14, 15, 16, 18, 19, 22, 23], "atom1": [2, 13], "atom2": [2, 13], "vertex": [2, 13], "add_user_def_bond": 2, "simpl": [2, 7, 15], "produc": [2, 7, 9, 13, 15, 16, 19, 22, 23], "those": [2, 8, 13, 15, 18, 19, 22], "atom3": 2, "atom4": 2, "third": [2, 22], "fourth": 2, "overwrit": [2, 8, 18, 19], "atol": [2, 9], "ltol": 2, "whose": [2, 14, 17, 22], "bohr": [2, 13], "degre": 2, "out": [2, 7, 15, 22, 23], "plane": [2, 7], "outp": 2, "linp": 2, "miscellan": 2, "quit": [2, 4], "send": [2, 15, 16], "qq": [2, 15], "version": [2, 7, 9, 11, 12, 14, 17, 18, 21, 22, 23], "basic": [2, 7, 14, 17, 19, 22, 23], "exit": 2, "begin": [2, 14], "testdir": [3, 8], "instanti": [3, 18, 23], "mark": [3, 14, 18, 19, 22], "parametr": 3, "arg": 3, "control_filenam": 3, "control_test": 3, "control_filepath": 3, "variabl": [3, 4, 13], "repetit": 3, "white": 3, "import": [3, 9, 13, 14, 15, 17, 19, 22, 23], "param": 3, "molecule_filenam": 3, "ch4": 3, "molecule_filepath": 3, "to_test": 3, "ref": [3, 19], "helper": [3, 8, 13, 16, 18, 19, 23], "treat": [3, 7, 22], "them": [3, 4, 7, 13, 14, 16, 18, 19, 21, 22, 23], "approx": 3, "intedef": 3, "assum": [3, 19, 22], "val": [3, 13], "through": [3, 4, 8, 13, 14, 15, 16, 22, 23], "assert": [3, 9, 22], "properli": [3, 4], "sort": [3, 7, 23], "structure_filepath": 3, "testdefinerunn": [4, 6], "assert_sendline_cal": [4, 6], "assert_sendline_has_cal": [4, 6], "test_add_atomic_coordinates_from_fil": [4, 6], "test_add_atomic_coordinates_from_file_cartesian": [4, 6], "test_copy_mo_files_ab_mo": [4, 6], "test_copy_mo_files_alpha_beta": [4, 6], "test_copy_mo_files_error": [4, 6], "test_copy_mo_files_mo": [4, 6], "test_define_basis_set": [4, 6], "test_define_core_potenti": [4, 6], "test_define_symmetri": [4, 6], "test_define_symmetry_error": [4, 6], "test_determine_symmetri": [4, 6], "test_determine_symmetry_ep": [4, 6], "test_dump_command_fil": [4, 6], "test_excited_state_menu_error_not_activ": [4, 6], "test_excited_state_menu_frequ": [4, 6], "test_excited_state_menu_irrep": [4, 6], "test_excited_state_menu_irrep_wrong_sym": [4, 6], "test_excited_state_menu_polli": [4, 6], "test_excited_state_menu_rpa": [4, 6], "test_excited_state_menu_urpa": [4, 6], "test_excited_state_menu_urpa_error": [4, 6], "test_excited_state_menu_wrong_ex_method": [4, 6], "test_excited_state_menu_wrong_menu": [4, 6], "test_existing_coordin": [4, 6], "test_existing_coordinates_cartesian": [4, 6], "test_existing_coordinates_error": [4, 6], "test_existing_coordinates_no_upd": [4, 6], "test_existing_coordinates_unsupport": [4, 6], "test_expect": [4, 6], "test_expect_raise_eof": [4, 6], "test_expect_raise_timeout": [4, 6], "test_extended_hueckel_theory_menu_charg": [4, 6], "test_extended_hueckel_theory_menu_default": [4, 6], "test_extended_hueckel_theory_menu_error": [4, 6], "test_extended_hueckel_theory_menu_nocharg": [4, 6], "test_extended_hueckel_theory_menu_unpair": [4, 6], "test_general_menu_ccsdt": [4, 6], "test_general_menu_dft": [4, 6], "test_general_menu_hf": [4, 6], "test_general_menu_wrong_method": [4, 6], "test_generate_internal_coordin": [4, 6], "test_generate_internal_coordinates_error": [4, 6], "test_geometry_menu_copymo": [4, 6], "test_geometry_menu_incompatibility_1": [4, 6], "test_geometry_menu_incompatibility_2": [4, 6], "test_geometry_menu_new_coords_1": [4, 6], "test_geometry_menu_new_coords_2": [4, 6], "test_geometry_menu_new_coords_3": [4, 6], "test_geometry_menu_new_coords_4": [4, 6], "test_geometry_menu_no_new_coord": [4, 6], "test_get_bin_path": [4, 6], "test_go_to_general_menu": [4, 6], "test_init": [4, 6], "test_initialize_control_1": [4, 6], "test_initialize_control_2": [4, 6], "test_initialize_control_incompat": [4, 6], "test_is_al": [4, 6], "test_postprocess": [4, 6], "test_quit_general_menu": [4, 6], "test_run_full_1": [4, 6], "test_run_full_2": [4, 6], "test_run_generate_mo_fil": [4, 6], "test_run_generate_mo_files_sym": [4, 6], "test_run_update_internal_coord": [4, 6], "test_run_update_internal_coords_error": [4, 6], "test_sendlin": [4, 6], "test_set_basi": [4, 6], "test_set_basis_error": [4, 6], "test_set_basis_error_2": [4, 6], "test_set_basis_error_3": [4, 6], "test_set_dft_options_no_dft": [4, 6], "test_set_dft_options_use_dft": [4, 6], "test_set_dft_options_wrong_xc": [4, 6], "test_set_ecp_error": [4, 6], "test_set_ecp_error_2": [4, 6], "test_set_ecp_error_3": [4, 6], "test_set_metr": [4, 6], "test_set_mo_from_control_fil": [4, 6], "test_set_mo_from_control_file_2": [4, 6], "test_set_mo_from_control_file_error": [4, 6], "test_set_mo_from_control_file_longpath": [4, 6], "test_set_mp2_opt": [4, 6], "test_set_mp2_options_f12": [4, 6], "test_set_mp2_options_geoopt": [4, 6], "test_set_mp2_options_mp2": [4, 6], "test_set_mp2_options_mp2_error": [4, 6], "test_set_ri_st": [4, 6], "test_set_ri_state_marij": [4, 6], "test_set_scf_opt": [4, 6], "test_skip_atomic_attribute_menu": [4, 6], "test_skip_atomic_attribute_menu_error": [4, 6], "test_skip_atomic_attribute_menu_intern": [4, 6], "test_switch_to_atomic_attribute_menu": [4, 6], "test_switch_to_atomic_attribute_menu_intern": [4, 6], "test_switch_to_atomic_attribute_menu_internal_error": [4, 6], "test_switch_to_molecular_orbital_definition_menu": [4, 6], "test_switch_to_scf_menu": [4, 6], "testexcept": [4, 6], "test_creat": [4, 6], "dr_data": [4, 6, 16], "test_get_define_templ": [4, 6], "test_validate_paramet": [4, 6], "pattern": [4, 15, 22], "go": [4, 15, 19], "timeout": [4, 15], "eof": 4, "problem": [4, 7, 9, 11, 15, 16, 18, 22], "incomplet": 4, "ir": [4, 7, 13, 15], "happen": [4, 14, 15, 16, 18, 19], "incompat": [4, 17, 19, 20, 22], "among": [4, 7, 14, 15, 19, 22], "previou": [4, 7, 12, 15, 18, 19, 22, 23], "60": [4, 15, 22], "log_filepath": 4, "log": [4, 12, 20, 21], "workdir": 4, "use_popen": 4, "pexpect": [4, 15], "commun": [4, 18, 22], "avoid": [4, 7, 14, 16, 19, 22], "side": [4, 14, 19, 23], "effect": [4, 14, 19, 22], "dure": [4, 13, 14, 18], "wait": 4, "search": [4, 7, 21], "environ": [4, 11, 19], "popen_spawn": 4, "popenspawn": 4, "popen": 4, "spawn": [4, 15, 16], "pty": 4, "define_command": 4, "dump": [4, 7], "command": [4, 6, 7, 9, 14, 15, 16, 19, 22], "behavior": [4, 14, 16, 19], "menu": [4, 15, 16, 22], "job": [4, 7, 9, 15], "reach": 4, "being": [4, 7, 14, 15, 19, 22], "normal": [4, 7, 22, 23], "abnorm": [4, 15], "regener": [4, 9, 12, 15, 19, 22], "must": [4, 22], "usemo": [4, 15], "taken": [4, 9, 19, 21], "scratch": 4, "extend": [4, 15, 22], "hueckel": [4, 15], "guess": [4, 15], "edit": 4, "least": [4, 6, 16, 18, 19, 22], "enabl": [4, 15, 21, 22], "enter": [4, 22], "sym": [4, 15], "desi": [4, 15], "notic": [4, 7, 12, 13, 19, 22], "disabl": [4, 15], "termin": [4, 15, 22], "similar": [4, 14, 18, 22, 23], "afterward": [4, 13, 15], "were": [4, 6, 7, 14, 19, 22], "successfulli": [4, 9], "unexpect": 4, "proper": [4, 7], "ha": [4, 7, 8, 12, 13, 14, 15, 16, 18, 19, 22, 23], "do": [4, 9, 16, 17, 18, 21, 22], "schema": [4, 15, 16], "excit": [4, 7, 15], "cerberu": [4, 15, 16], "yaml": [4, 15, 19], "nullabl": [4, 16], "basis_atom": [4, 15], "keysrul": 4, "valuesrul": 4, "use_cosmo": [4, 15], "coord_fil": [4, 15], "copymo": [4, 15], "boolean": [4, 7, 19], "desy_ep": [4, 15], "min": 4, "ecp_atom": 4, "ex_all_st": [4, 15], "default_sett": 4, "local": [4, 22], "setter": 4, "ex_method": [4, 15], "ex_multi": [4, 15], "ex_exopt": [4, 15], "ex_frequ": [4, 15], "ex_frequency_unit": [4, 15], "ex_irrep_st": [4, 15], "rpa": [4, 7, 15], "ci": [4, 15], "dynpol": [4, 15], "polli": [4, 15], "singlet": [4, 7, 15], "doublet": [4, 15], "triplet": [4, 15], "ex_mp2": [4, 15], "gridsiz": [4, 14, 15], "marij": [4, 7, 15], "oneof": 4, "rijk": [4, 15], "ri": [4, 7, 15, 23], "maxcor": [4, 15], "adc": [4, 15], "ccsd": [4, 15], "t": [4, 15], "ccsdt": [4, 15], "maxit": [4, 15], "hf": [4, 15], "mp2energi": [4, 15], "scfconv": [4, 14, 15], "max": [4, 7], "9": [4, 15, 22], "scfiterlimit": [4, 14, 15], "200": 4, "sym_ep": [4, 15], "unpaired_electron": [4, 15], "use_f12": [4, 15], "experiment": [4, 12, 13, 15, 16], "featur": [4, 11, 13, 15, 16, 17, 19, 20, 21, 22], "unit": [6, 13, 15, 16, 17, 18, 21], "mainli": [6, 13, 15, 17, 18, 19, 23], "mock": [6, 16, 19], "sendline_mock": 6, "sendlin": 6, "els": 6, "assert_has_cal": 6, "mo_dirpath": [6, 8], "request": [6, 7, 8, 11], "test_aoforcevibrationaldata": [7, 8], "test_scfiterationdata": [7, 8], "test_str": [7, 8], "test_properti": [7, 8], "cls_dict_path": [7, 8, 18], "generate_fil": [7, 8, 18], "testfunct": [7, 8], "test_convert_float": [7, 8], "test_convert_int": [7, 8], "test_convert_time_str": [7, 8], "testpars": [7, 8], "test_fail_all_done_check": [7, 8], "test_get_split_jobex_pars": [7, 8], "test_get_valu": [7, 8], "test_grep_lin": [7, 8], "parser_and_dict": [7, 8], "test_eiger_runn": [7, 8], "test_error_homo": [7, 8], "test_hol": [7, 8], "test_no_empty_st": [7, 8], "test_parsing_failur": [7, 8], "stdout": [7, 9, 19, 23], "reli": [7, 16, 17, 18, 19, 22, 23], "core_memory_dft": 7, "memory_per_atom": 7, "atoms_per_loop": 7, "construction_tim": 7, "numer": [7, 9, 14, 18, 19, 23], "aoforc": [7, 12, 19, 23], "Will": [7, 9], "numforc": 7, "remain": [7, 14, 22], "memori": [7, 15], "mb": 7, "need": [7, 14, 15, 16, 18, 19, 22, 23], "kb": 7, "loop": 7, "timing_descript": 7, "cpu_tim": 7, "wall_tim": 7, "cpu": 7, "wall": 7, "intens": 7, "m": [7, 13, 19], "dipole_mo": 7, "analysi": [7, 19, 23], "rotat": [7, 23], "constant": 7, "cm": 7, "optic": 7, "u": [7, 13, 18, 19], "3x3": 7, "dipol": [7, 23], "moment": [7, 15, 16, 23], "principl": [7, 17, 19], "axi": 7, "frequenc": [7, 15], "ddip_dq": 7, "intensities_perc": 7, "raman": 7, "eigenvector": [7, 19], "reduced_mass": 7, "vibrat": [7, 23], "mode": [7, 19, 22], "deriv": 7, "km": 7, "mol": 7, "percentag": 7, "num": 7, "reduc": [7, 14], "mass": [7, 23], "zpve": 7, "panda": 7, "datafram": 7, "neg": 7, "satisfi": [7, 22], "condit": [7, 18, 19, 22], "ab": 7, "zero": 7, "relev": [7, 14, 18, 19, 21, 22, 23], "basis_per_speci": 7, "aux_basis_per_speci": 7, "number_scf_basis_func": 7, "number_scf_aux_basis_func": 7, "most": [7, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "escf": [7, 12, 18, 23], "speci": 7, "auxiliari": [7, 9], "auxialiari": 7, "info": 7, "screening_charg": 7, "element_radiu": 7, "area": [7, 22], "volum": [7, 22], "nsph": 7, "npspher": 7, "disex2": 7, "phsran": 7, "ampran": 7, "refind": 7, "fepsi": 7, "dielectr": 7, "total_energi": [7, 23], "total_energy_oc_corr": 7, "dielectric_energi": 7, "dielectric_energy_oc_corr": 7, "radiu": 7, "site": 7, "egrad": [7, 12, 23], "spherical_grids": 7, "gridpoint": 7, "exchang": [7, 19, 23], "correl": [7, 19, 23], "spheric": 7, "en_corr": 7, "paser": 7, "unrestricted_electron": 7, "dipole_vector": 7, "dipole_norm": 7, "quadrupole_tensor": 7, "quadrupole_trac": 7, "quadrupole_anisotropi": 7, "electrostat": [7, 23], "quadrupol": [7, 23], "unrestrict": 7, "compon": [7, 19, 22], "tensor": 7, "trace": 7, "anisotropi": 7, "calc_typ": 7, "iter": [7, 15, 23], "residuum_convergence_criterium": 7, "n_occupied_orbit": 7, "orbital_character": 7, "max_davidson_it": 7, "machine_precis": 7, "max_core_mem": 7, "max_cao_basis_vector": 7, "max_treated_vector": 7, "irrep_data": 7, "gs_tot_en": 7, "residuum": 7, "converg": [7, 12, 23], "criterium": 7, "how": [7, 16, 18, 19, 21, 22, 23], "davidson": 7, "machin": [7, 19, 22], "precis": [7, 13, 22], "cao": 7, "simultan": [7, 22], "degeneraci": 7, "dimens": 7, "ground": 7, "detail": [7, 17, 18, 19, 21, 22, 23], "sublist": 7, "convern": 7, "dealt": 7, "inner": 7, "euclidean": 7, "residu": 7, "msg": 7, "func_typ": 7, "xcfun": 7, "relax": [7, 12, 23], "concern": [7, 16, 17, 18, 22], "xc": 7, "gga": 7, "lda": 7, "center_of_mass": 7, "center_of_charg": 7, "integral_neglect_threshold": 7, "thize": [7, 14], "thime": [7, 14], "gradien": 7, "neglect": 7, "storag": [7, 22], "energy_onli": 7, "lattice_param": 7, "shortest_interatomic_dist": 7, "direct_space_vector": 7, "reciprocal_space_vector": 7, "shortest": 7, "interatom": 7, "align": 7, "x": [7, 9, 19, 20, 21], "xy": 7, "reciproc": 7, "pi": 7, "v": 7, "a2": 7, "a3": 7, "b3": 7, "crystallograph": 7, "recov": 7, "energy_chang": 7, "rms_displ": 7, "max_displ": 7, "rms_grad": 7, "max_grad": 7, "final": [7, 14, 17, 18, 22, 23], "what": [7, 18, 19, 22], "statpt": [7, 12, 18, 23], "thr": 7, "conv": 7, "achiev": [7, 19, 22], "rm": 7, "displac": 7, "thr_int_coord": 7, "criterion": [7, 22], "norm_cartesian": 7, "norm_intern": 7, "max_intern": 7, "stapt": [7, 23], "take": [7, 13, 15, 16, 18, 19, 22, 23], "account": 7, "ricor": 7, "rij_memori": 7, "rik": 7, "ridft": [7, 12, 15, 18, 19, 23], "approxim": [7, 22], "rij": 7, "host": [7, 22], "start_tim": 7, "end_tim": 7, "wa": [7, 15, 22, 23], "datetim": 7, "dii": [7, 23], "diis_error_vect": 7, "conv_tot_en": 7, "conv_one_e_en": 7, "virtual_orbital_shift_on": 7, "virtual_orbital_shift_limit": 7, "restart_fil": 7, "oper": [7, 14, 16, 22, 23], "switch": [7, 19], "increment": [7, 20], "virtual": [7, 23], "shift": [7, 23], "character": [7, 22], "restart": 7, "kinetic_energi": 7, "potential_energi": 7, "virial_theorem": [7, 23], "wavefunction_norm": 7, "coulomb_energi": 7, "xc_energi": 7, "ts_energi": 7, "free_energi": 7, "sigma0_energi": 7, "virial": 7, "theorem": 7, "wavefunct": 7, "coulomb": 7, "entrop": 7, "free": [7, 22], "sigma0": 7, "first_index": 7, "damp": 7, "keep": [7, 14, 16, 19, 22], "wast": [7, 18], "higher": [7, 12, 21, 23], "tot_en": 7, "osc_str": 7, "rot_str": 7, "dominant_contribut": 7, "moments_column": 7, "cannot": [7, 14, 15, 19, 22], "oscil": 7, "strength": 7, "rotatori": 7, "domin": 7, "occ_orb": 7, "virt_orb": 7, "coeff": 7, "coeffici": 7, "electr": 7, "magnet": 7, "column": 7, "electric_dipol": 7, "magnetic_dipol": 7, "electric_quadrupol": 7, "initial_elec_temp": 7, "final_elec_temp": 7, "annealing_factor": 7, "annealing_homo_lumo_gap_limit": 7, "smearing_de_limit": 7, "smear": [7, 23], "temperatur": 7, "anneal": 7, "de": 7, "max_trust_radiu": 7, "min_trust_radiu": 7, "init_trust_radiu": 7, "min_grad_norm_for_gdii": 7, "prev_steps_for_gdii": 7, "hessian_update_method": 7, "thr_energy_chang": 7, "thr_max_displ": 7, "thr_max_grad": 7, "thr_rms_displ": 7, "thr_rms_grad": 7, "use_default": 7, "final_step_radiu": 7, "trust": 7, "minimum": [7, 15], "gdii": 7, "hessian": 7, "n_rep": 7, "rep": 7, "part": [7, 12, 14, 18, 19, 22], "might": [7, 12, 13, 14, 15, 16, 18, 19, 21, 22], "build": [7, 18, 23], "numerical_integr": 7, "aforc": 7, "work": [7, 8, 12, 13, 14, 15, 18, 19, 22], "nativ": 7, "ex_stat": 7, "minim": 7, "rel": [7, 9, 14, 16, 18], "prece": 7, "rdgrad": [7, 23], "jobex": [7, 12, 23], "mpgrad": [7, 12, 23], "ricc2": [7, 12, 15, 23], "pnoccsd": [7, 23], "pno": 7, "program": [7, 9, 12, 17, 22], "yet": [7, 19], "dscf": [7, 12, 15, 19, 23], "main": [7, 16, 18, 19, 21], "portion": [7, 16, 18, 19, 22], "aim": [7, 15, 19, 22], "reusabl": 7, "possibl": [7, 14, 15, 16, 17, 18, 19, 22], "across": [7, 19, 22], "quantiti": [7, 21, 23], "access": [7, 15, 16, 18, 19, 20, 21, 22, 23], "lazi": [7, 18, 23], "section": [7, 15, 16, 17, 18, 19, 22, 23], "crash": 7, "lead": [7, 14, 15, 17, 19], "wrong": 7, "heavili": [7, 16], "regex": 7, "isotop": 7, "activ": [7, 15, 22], "subdictionari": 7, "xf": 7, "functional_msg": 7, "functional_nam": 7, "functional_typ": 7, "chosen": [7, 18], "exopt": [7, 15], "check_all_don": 7, "exec_en": 7, "parser_en": 7, "exec_grad": 7, "parser_grad": 7, "exec_relax": 7, "parser_relax": 7, "text": [7, 18, 21, 23], "find": [7, 22], "th": [7, 15], "callabl": 7, "better": [7, 19], "instead": [7, 9, 13, 14, 16, 18, 19, 22, 23], "nline": 7, "similarli": [7, 23], "grep": 7, "plu": [7, 15, 22], "tm_version": [7, 8], "tm_build": 7, "tm_lattice_param": 7, "pre": [7, 12], "print": [7, 9, 19, 23], "alloc": 7, "exponenti": 7, "11": [7, 21, 22], "23": 7, "123e": 7, "01": [7, 19], "123d": 7, "compos": [7, 23], "asterisk": 7, "fortran": 7, "dai": [7, 22], "hour": 7, "12": [7, 22], "minut": 7, "55": 7, "nelec": 7, "eiger": [7, 23], "ascend": [7, 23], "inddic": 7, "1e": [7, 9], "06": 7, "anot": 7, "data_path": 7, "compat": [7, 18, 19, 21], "mutablesequ": [7, 23], "sequenc": [7, 16], "increas": [7, 14, 15, 21], "eigenst": [7, 23], "subset": [7, 16], "filter": 7, "shortcut": [7, 14], "hole": 7, "allow_fract": 7, "only_occupi": 7, "reorder_irrep_index": 7, "lowest": [7, 23], "fill": [7, 13], "ones": [7, 15, 18, 19], "procedur": [7, 16, 22, 23], "becaus": [7, 18, 22], "equal": [7, 9, 17], "self": [7, 11, 16], "ly": 7, "dg_string": 7, "py": [8, 17, 19, 20], "repeat": [8, 18, 19, 23], "verifi": [8, 14, 15, 19], "implicitli": 8, "target": [8, 16, 18, 19], "extens": [8, 15, 22], "files_list": [8, 18], "pytest": [8, 9, 19], "fixtur": [8, 16, 18, 19], "These": [8, 13, 14, 15, 19, 22, 23], "ensur": [8, 16, 22], "parser_method": [8, 9, 18], "infrastructur": [9, 19], "configur": [9, 19, 20], "10": [9, 15, 22], "dryrun_itest": [9, 19], "baseexcept": 9, "itest": [9, 19], "obj": 9, "test_if_subclass": 9, "tri": 9, "By": [9, 15, 19, 22], "deactiv": 9, "desir": [9, 16], "rtol": 9, "07": 9, "ignored_valu": 9, "err_msg": 9, "verbos": 9, "numpi": 9, "assert_equ": 9, "16": [9, 21, 22], "assertionerror": 9, "requir": [9, 12, 13, 14, 15, 16, 17, 18, 19, 22], "scalar": 9, "arrai": 9, "almost": 9, "conflict": 9, "assert_allclos": 9, "absolut": [9, 15, 19, 22], "still": [9, 13, 14, 18, 19], "though": [9, 15, 18, 19, 22, 23], "failur": [9, 15, 16, 19, 22], "current_level": 9, "nest": 9, "test_definit": 9, "log_fpath": 9, "outdir": 9, "logfil": 9, "struc": 9, "file_nam": 9, "_privat": 9, "expos": 9, "public": [9, 22], "isnan": 9, "typeerror": 9, "rubric": 9, "ufunc": 9, "sometim": 9, "notimplementedtyp": 9, "wrapper": 9, "make": [9, 11, 14, 16, 17, 18, 19, 20, 22], "sure": [9, 14, 16, 22], "onc": [9, 18, 19], "solv": [9, 15], "level": [9, 16, 18, 19, 23], "instal": [9, 19, 22], "define_opt": 9, "coord_filenam": 9, "control_reference_filenam": 9, "file_class": 9, "datagroups_opt": 9, "success": [9, 19], "datagroup_nam": 9, "datagroup_valu": 9, "delet": [9, 19], "changedir": 9, "context": [9, 18, 19, 22], "manag": [9, 18, 19, 21], "temporari": [9, 19], "tempfil": 9, "mkdtemp": 9, "cd": 9, "monti": [9, 18, 21, 23], "o": [9, 11, 13, 19], "preserv": [9, 22], "yield": 9, "touch": 9, "turbomoleio": [10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "you": [11, 13, 14, 15, 16, 18, 19, 20, 22, 23], "patch": [11, 20], "issu": 11, "github": [11, 12], "http": [11, 22], "com": 11, "matgenix": 11, "pleas": [11, 22], "much": [11, 14, 15, 16, 19, 23], "small": [11, 15, 18, 19], "snippet": 11, "reproduc": [11, 14, 19], "your": [11, 15, 16, 18, 19, 22, 23], "python": [11, 12, 13, 14, 17, 19, 20, 21], "document": [12, 16, 17, 19, 20, 22, 23], "commit": [12, 22], "hook": 12, "lint": 12, "workflow": [12, 15, 21], "adapt": [12, 22], "progress": [12, 13], "api": [12, 13, 14, 17, 20, 23], "prior": [12, 13, 19, 22], "preliminari": 12, "rimp2": 12, "reorgan": 12, "script": [12, 14, 19, 22, 23], "offici": [12, 22], "gpl": [12, 22], "v3": 12, "licens": [12, 21], "simul": 13, "howev": [13, 14, 15, 16, 18, 22, 23], "further": [13, 22, 23], "reason": [13, 14, 15, 19, 22], "advantag": [13, 15, 16, 17, 18], "convers": 13, "limit": [13, 14, 15, 19, 22], "capabl": 13, "isol": [13, 18], "see": [13, 15, 16, 17, 19, 22, 23], "below": [13, 14, 18, 19, 22, 23], "exploit": 13, "simplest": [13, 15], "translat": 13, "look": [13, 14, 19, 23], "00000000000000": 13, "17616323936717": 13, "03717448857876": 13, "35232647873438": 13, "complic": [13, 16], "commonli": 13, "we": [13, 14, 15, 16, 18, 19, 22, 23], "stress": 13, "again": [13, 18, 23], "oppos": 13, "Their": [13, 19], "bring": [13, 16], "few": [13, 14, 16, 17, 23], "let": [13, 18], "never": [13, 14], "nor": [13, 22], "As": [13, 14, 15, 18, 19], "subsequ": 14, "lack": 14, "unambigu": 14, "distinct": 14, "superflu": 14, "particular": [14, 15, 16, 18, 19, 20, 22, 23], "appar": 14, "strictli": [14, 17], "mandatori": 14, "under": [14, 18, 19, 22], "offer": [14, 22, 23], "view": [14, 18, 22], "inspir": 14, "distribut": [14, 16, 19, 22], "simplic": 14, "ambigu": 14, "encount": [14, 15], "ask": [14, 22], "intent": [14, 22], "p": [14, 15], "m3": 14, "interest": [14, 22], "dg": 14, "kind": [14, 15, 18, 19, 22, 23], "uniform": 14, "next": [14, 19, 22], "join": 14, "want": [14, 15, 16, 18, 21, 22], "c1": 14, "100": 14, "abov": [14, 15, 18, 19, 22, 23], "lastli": [14, 18, 19, 23], "whole": [14, 15, 18, 19, 22], "connect": [14, 19, 21, 22], "pbe": 14, "design": [14, 18, 19, 21, 22, 23], "besid": 14, "frequent": 14, "over": [14, 19], "best": [14, 16, 19, 22], "attent": 14, "organ": [14, 18, 19, 22, 23], "analys": 14, "divid": [14, 19], "mention": [14, 15, 19], "explicitli": [14, 15, 22], "crucial": 15, "challeng": 15, "autom": 15, "child": 15, "applic": [15, 19, 22], "respond": 15, "complex": 15, "speed": 15, "navig": 15, "histori": [15, 16], "submit": 15, "sent_command": [15, 16], "repli": [15, 16], "brought": 15, "situat": 15, "foreseen": 15, "realli": [15, 19], "low": 15, "too": [15, 22], "120": 15, "good": [15, 16, 18, 19, 23], "compromis": 15, "previous": [15, 19], "interrupt": 15, "help": [15, 17, 19], "predefin": 15, "prepar": [15, 19], "dp": 15, "dr": 15, "prepapar": 15, "Of": [15, 22], "cours": [15, 19, 22], "tune": [15, 19], "proceed": 15, "retriev": 15, "cover": [15, 19, 22], "everi": [15, 22], "scenario": 15, "focus": [15, 23], "keywork": 15, "overrid": [15, 19], "forc": [15, 22], "sy": 15, "distinguish": [15, 22], "ciss": 15, "rpat": 15, "cist": 15, "outcom": [15, 19], "eht": 15, "uht": 15, "larger": [15, 22], "num_exc_st": 15, "multiplicity_int": 15, "exci": 15, "nexc": 15, "polaris": 15, "589": 15, "nm": 15, "enforc": [15, 17, 22], "treatment": 15, "geoopt": 15, "def2": 15, "sv": 15, "specic": 15, "unpair": 15, "f12": 15, "ccsdapprox": 15, "rir12": 15, "accuraci": 15, "rang": 15, "cosmo_out": 15, "paramat": 15, "At": [15, 23], "prevent": [15, 19, 22], "typo": 15, "altern": [15, 16, 22], "define_parameters_valid": 15, "Being": [15, 16], "bit": 15, "care": [15, 18, 19, 21], "certain": [15, 22], "probabl": [15, 16, 18, 23], "guid": [16, 17, 18, 19, 23], "briefli": 16, "discuss": [16, 18, 19], "aspect": [16, 17], "rememb": [16, 18], "trivial": [16, 19], "prone": 16, "littl": [16, 19], "wish": [16, 19, 22, 23], "explor": 16, "plan": [16, 19], "protect": [16, 22], "_": 16, "right": [16, 22], "turn": 16, "introduc": [16, 18, 19], "carefulli": [16, 18, 19, 21], "There": 16, "mind": [16, 18], "advanc": [16, 21], "_sendlin": 16, "_expect": 16, "track": 16, "receiv": [16, 22], "known": 16, "intercept": 16, "signal": 16, "disrupt": 16, "flow": [16, 22], "run_": 16, "share": [16, 18, 22], "idea": [16, 22, 23], "mimic": 16, "reus": 16, "develop": [16, 17, 18, 19, 22, 23], "natur": [16, 18, 21, 22], "variou": [16, 23], "explan": [16, 17, 18], "hoc": 16, "interconnected": 16, "introduct": [16, 19], "succe": 16, "against": [16, 22], "real": 16, "welcom": [16, 22], "improv": 16, "power": [16, 22], "place": [16, 19, 22, 23], "learn": 16, "dependeci": 16, "With": 17, "nonetheless": 17, "compli": [17, 22], "guidelin": 17, "greater": 17, "8": [17, 21, 22], "understand": [17, 19, 23], "orient": 17, "inherit": 17, "often": [17, 19], "pep": 17, "style": 17, "although": [17, 22, 23], "deviat": 17, "advis": [17, 21, 22], "stick": [17, 19], "essenti": [17, 19, 22], "futur": [17, 22], "googl": 17, "docstr": 17, "docs_rst": 17, "typeset": 17, "restructuredtext": 17, "html": [17, 19, 22], "sphinx": 17, "doc": [17, 20], "rst": 17, "invok": 17, "task": 17, "remark": 17, "strongli": 17, "discourag": [17, 19], "backward": [17, 18, 19, 21], "clear": [17, 22], "clearli": [17, 22], "highlight": 17, "possibli": [17, 19, 23], "agre": [17, 18, 22], "maintain": [17, 22], "explain": [18, 19, 22], "depth": 18, "inspect": [18, 19], "meant": 18, "lazy_properti": 18, "mix": 18, "temporarili": 18, "dispos": 18, "narrow": 18, "down": [18, 21], "abl": 18, "togeth": [18, 23], "On": 18, "hand": 18, "prefer": [18, 22, 23], "approach": [18, 23], "quickli": 18, "he": 18, "rest": [18, 23], "impact": 18, "proce": [18, 19], "bottom": 18, "express": [18, 22, 23], "focu": [18, 23], "analyz": [18, 19], "consider": 18, "appear": 18, "disappear": 18, "latter": 18, "newli": 18, "__init__": [18, 20], "deseri": 18, "old": [18, 19], "anymor": 18, "upon": 18, "manner": [18, 20, 22, 23], "address": [18, 22], "encapsul": 18, "recommend": 18, "hold": 18, "exec_to_out_obj": 18, "decid": [18, 22], "mayb": 18, "extrem": [18, 19], "becom": 18, "bug": [18, 19, 20, 21], "partial": 18, "loos": 18, "warn": 18, "deal": [18, 23], "process": 19, "meet": [19, 22], "behav": 19, "exhaust": 19, "beyond": [19, 22], "scope": [19, 22], "somewhat": 19, "arbitrari": 19, "own": [19, 22], "reintroduc": 19, "later": [19, 22], "wide": [19, 22], "custom": [19, 22], "coverag": [19, 22], "cov": 19, "sum": 19, "easiest": 19, "pip": 19, "mongomock": 19, "runtest": 19, "sh": 19, "project": 19, "report": [19, 21], "coverage_html": 19, "coveragerc_unit": 19, "coveragerc_integr": 19, "subfold": 19, "creation": 19, "toward": 19, "high": 19, "rate": 19, "alon": [19, 23], "99": 19, "tm_v7": 19, "additionn": 19, "necessari": [19, 22], "integrations_test": 19, "exclud": [19, 22], "outright": 19, "obvious": 19, "meaningless": 19, "date": [19, 22], "elaps": 19, "chemic": 19, "slightli": [19, 20], "impract": 19, "meaning": 19, "acoust": 19, "vari": 19, "inde": 19, "cumbersom": 19, "inevit": 19, "underli": 19, "renam": 19, "altogeth": 19, "now": 19, "releas": [19, 20, 21, 22], "light": 19, "looser": 19, "tolear": 19, "wise": 19, "test_dscf": 19, "test_run_dscf_hf": 19, "trigger": 19, "imposs": 19, "wrongli": 19, "systemat": [19, 22, 23], "short": [19, 22], "enough": [19, 23], "comput": [19, 22], "resourc": 19, "gain": 19, "89": 19, "test_": 19, "discov": 19, "experi": 19, "unittest": 19, "testcas": 19, "onlin": 19, "practic": [19, 22], "whenev": 19, "tmpdir": 19, "why": [19, 22], "conftest": 19, "eas": [19, 20], "itself": [19, 22], "benzen": 19, "benzene_myxc": 19, "hereaft": [19, 22], "testgen": 19, "testexec": 19, "testnam": 19, "excerpt": 19, "tree": 19, "aceton_ful": 19, "h2_numforc": 19, "aceton_dftd3_tzvp": 19, "h2o_std": 19, "h2o_uhf": 19, "nh3_cosmo_fermi": 19, "nh3_dftd1": 19, "tests_config": 19, "generate_output_fil": 19, "generate_control": 19, "tm_vx": 19, "y": [19, 20], "z": 19, "v7": 19, "thing": [19, 22], "action": [19, 22], "fulli": 19, "due": 19, "critic": 19, "measur": [19, 22], "dev_script": 19, "parsing_update_differ": 19, "dry": 19, "minor": [19, 20], "occur": [19, 22], "fpath": 19, "aris": [19, 22], "newest": 19, "older": [19, 20], "safe": 19, "transit": 19, "facilit": 19, "know": [19, 22], "adopt": [20, 22], "semant": 20, "major": [20, 22], "__version__": 20, "conf": 20, "latest": 20, "librari": [21, 22], "summar": 21, "mongodb": 21, "databas": 21, "firework": 21, "quick": 21, "overal": 21, "appendix": 21, "runner": 21, "suit": 21, "changelog": 21, "feb": 21, "24": 21, "2022": 21, "15": [21, 22], "sep": 21, "20": [21, 22], "2021": 21, "mar": 21, "page": 21, "softwar": 22, "redistribut": 22, "term": 22, "gnu": 22, "publish": 22, "foundat": 22, "hope": 22, "warranti": 22, "impli": 22, "merchant": 22, "fit": 22, "FOR": 22, "29": 22, "june": 22, "2007": 22, "copyright": 22, "inc": 22, "fsf": 22, "org": 22, "everyon": 22, "permit": 22, "verbatim": 22, "preambl": 22, "copyleft": 22, "awai": 22, "freedom": 22, "contrast": 22, "our": 22, "author": 22, "speak": 22, "price": 22, "piec": [22, 23], "deni": 22, "surrend": 22, "therefor": 22, "grati": 22, "fee": 22, "recipi": 22, "And": 22, "legal": 22, "permiss": 22, "sake": 22, "erron": 22, "devic": 22, "manufactur": 22, "fundament": 22, "abus": 22, "product": 22, "individu": 22, "unaccept": 22, "prohibit": 22, "substanti": 22, "domain": 22, "stand": 22, "readi": 22, "provis": 22, "threaten": 22, "constantli": 22, "patent": 22, "restrict": 22, "special": 22, "danger": 22, "proprietari": 22, "assur": 22, "render": 22, "AND": 22, "law": 22, "semiconductor": 22, "mask": 22, "license": 22, "earlier": 22, "unmodifi": 22, "propag": 22, "secondarili": 22, "liabl": 22, "infring": 22, "privat": 22, "countri": 22, "convei": 22, "parti": 22, "mere": 22, "network": 22, "transfer": 22, "extent": 22, "conveni": 22, "promin": 22, "visibl": 22, "tell": 22, "item": 22, "recogn": 22, "bodi": 22, "languag": 22, "serv": 22, "kernel": 22, "window": 22, "compil": 22, "interpret": 22, "link": [22, 23], "subprogram": 22, "intim": 22, "grant": 22, "irrevoc": 22, "met": 22, "affirm": 22, "unlimit": 22, "constitut": 22, "acknowledg": 22, "fair": 22, "long": 22, "sole": 22, "exclus": 22, "facil": 22, "materi": 22, "behalf": 22, "outsid": 22, "relationship": 22, "circumst": 22, "sublicens": 22, "anti": 22, "circumvent": 22, "No": 22, "shall": 22, "deem": 22, "technolog": 22, "fulfil": 22, "oblig": 22, "articl": 22, "wipo": 22, "treati": 22, "decemb": 22, "1996": 22, "waiv": 22, "forbid": 22, "exercis": 22, "disclaim": 22, "medium": 22, "conspicu": 22, "intact": 22, "absenc": 22, "along": [22, 23], "carri": 22, "anyon": 22, "who": [22, 23], "possess": 22, "regardless": 22, "invalid": 22, "independ": 22, "aggreg": 22, "inclus": 22, "embodi": 22, "accompani": 22, "durabl": 22, "customarili": 22, "interchang": 22, "year": 22, "spare": 22, "cost": 22, "server": 22, "occasion": 22, "noncommerci": 22, "subsect": [22, 23], "6b": 22, "sai": 22, "peer": 22, "transmiss": 22, "6d": 22, "consum": 22, "tangibl": 22, "person": 22, "famili": 22, "household": 22, "sold": 22, "incorpor": 22, "dwell": 22, "doubt": 22, "resolv": 22, "favor": 22, "commerci": 22, "industri": 22, "unless": 22, "signific": 22, "suffic": 22, "continu": 22, "interf": 22, "transact": 22, "perpetu": 22, "But": 22, "neither": 22, "retain": 22, "abil": 22, "rom": 22, "servic": 22, "advers": 22, "affect": 22, "violat": 22, "rule": 22, "protocol": 22, "publicli": 22, "password": 22, "unpack": 22, "supplement": 22, "govern": 22, "regard": 22, "notwithstand": 22, "holder": 22, "liabil": 22, "misrepresent": 22, "licensor": 22, "declin": 22, "trademark": 22, "trade": 22, "indemnif": 22, "contractu": 22, "assumpt": 22, "impos": 22, "relicens": 22, "surviv": 22, "statement": 22, "expressli": 22, "void": 22, "paragraph": 22, "ceas": 22, "reinstat": 22, "provision": 22, "until": 22, "perman": 22, "notifi": 22, "cessat": 22, "moreov": 22, "cure": 22, "30": 22, "receipt": 22, "qualifi": 22, "Not": 22, "ancillari": 22, "consequ": 22, "likewis": 22, "noth": 22, "downstream": 22, "subject": 22, "complianc": 22, "entiti": 22, "asset": 22, "subdivid": 22, "merg": 22, "whatev": 22, "predecessor": 22, "had": 22, "effort": 22, "royalti": 22, "litig": 22, "cross": 22, "claim": 22, "counterclaim": 22, "lawsuit": 22, "alleg": 22, "sell": 22, "sale": 22, "contributor": 22, "acquir": 22, "worldwid": 22, "agreement": 22, "denomin": 22, "coven": 22, "sue": 22, "knowingli": 22, "readili": 22, "arrang": 22, "depriv": 22, "yourself": 22, "benefit": 22, "knowledg": 22, "believ": 22, "pursuant": 22, "procur": 22, "convey": 22, "discriminatori": 22, "busi": 22, "payment": 22, "primarili": 22, "28": 22, "march": 22, "constru": 22, "defens": 22, "court": 22, "contradict": 22, "excus": 22, "pertin": 22, "whom": 22, "refrain": 22, "13": 22, "affero": 22, "14": 22, "revis": 22, "Such": 22, "spirit": 22, "choos": 22, "ever": 22, "proxi": 22, "THERE": 22, "NO": 22, "THE": 22, "TO": 22, "BY": 22, "IN": 22, "OR": 22, "AS": 22, "OF": 22, "BUT": 22, "NOT": 22, "risk": 22, "qualiti": 22, "WITH": 22, "prove": 22, "defect": 22, "repair": 22, "event": 22, "WILL": 22, "BE": 22, "damag": 22, "incident": 22, "consequenti": 22, "inabl": 22, "loss": 22, "BEING": 22, "inaccur": 22, "sustain": 22, "IF": 22, "SUCH": 22, "17": 22, "review": 22, "waiver": 22, "civil": 22, "greatest": 22, "attach": 22, "safest": 22, "pointer": 22, "brief": 22, "www": 22, "contact": 22, "paper": 22, "mail": 22, "hypothet": 22, "gui": 22, "box": 22, "employ": 22, "programm": 22, "school": 22, "subroutin": 22, "lesser": 22, "lgpl": 22, "name_of_the_execut": 23, "dig": 23, "decomposit": 23, "energy_data": 23, "0x7fb15f425eb8": 23, "49586861429": 23, "42945116692": 23, "gather": 23, "scf_output": 23, "0x7fd37d6282b0": 23, "tailor": 23, "sens": 23, "punctual": 23, "mostli": 23, "top": 23, "resolut": 23, "ident": 23, "criteria": 23, "cc2": 23, "uhfmo_alpha": 23, "uhfmo_beta": 23}, "objects": {"": [[1, 0, 0, "-", "turbomoleio"]], "turbomoleio": [[2, 0, 0, "-", "core"], [4, 0, 0, "-", "input"], [7, 0, 0, "-", "output"], [9, 0, 0, "-", "testfiles"]], "turbomoleio.core": [[2, 0, 0, "-", "base"], [2, 0, 0, "-", "control"], [2, 0, 0, "-", "datagroups"], [2, 0, 0, "-", "molecule"], [2, 0, 0, "-", "periodic"], [2, 0, 0, "-", "symmetry"], [3, 0, 0, "-", "tests"], [2, 0, 0, "-", "utils"]], "turbomoleio.core.base": [[2, 1, 1, "", "BaseSystem"], [2, 3, 1, "", "get_coord_lines"], [2, 3, 1, "", "get_mol_and_indices_frozen"]], "turbomoleio.core.base.BaseSystem": [[2, 2, 1, "", "coord_lines"], [2, 2, 1, "", "to_coord_file"], [2, 2, 1, "", "to_coord_string"], [2, 2, 1, "", "to_file"]], "turbomoleio.core.control": [[2, 1, 1, "", "Control"], [2, 1, 1, "", "Defaults"], [2, 1, 1, "", "Energy"], [2, 1, 1, "", "Gradient"], [2, 1, 1, "", "Shells"], [2, 3, 1, "", "adg"], [2, 3, 1, "", "cdg"], [2, 3, 1, "", "cpc"], [2, 3, 1, "", "kdg"], [2, 3, 1, "", "mdgo"], [2, 3, 1, "", "sdg"], [2, 3, 1, "", "sdgo"]], "turbomoleio.core.control.Control": [[2, 2, 1, "", "add_cosmo"], [2, 2, 1, "", "cpc"], [2, 4, 1, "", "energy"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_metric"], [2, 2, 1, "", "get_charge"], [2, 2, 1, "", "get_shells"], [2, 2, 1, "", "get_subfiles_list"], [2, 4, 1, "", "gradient"], [2, 4, 1, "", "is_uhf"], [2, 2, 1, "", "remove_last_energy"], [2, 2, 1, "", "remove_last_gradient"], [2, 2, 1, "", "set_disp"], [2, 2, 1, "", "to_file"]], "turbomoleio.core.control.Defaults": [[2, 5, 1, "", "METRIC"]], "turbomoleio.core.control.Energy": [[2, 4, 1, "", "delta_e"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 4, 1, "", "n_steps"], [2, 2, 1, "", "plot"]], "turbomoleio.core.control.Gradient": [[2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 4, 1, "", "last_grad_max"], [2, 4, 1, "", "last_grad_norm"], [2, 4, 1, "", "max_gradients"], [2, 4, 1, "", "n_steps"], [2, 4, 1, "", "norms"], [2, 2, 1, "", "plot"]], "turbomoleio.core.control.Shells": [[2, 2, 1, "", "as_dict"], [2, 2, 1, "", "from_dict"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 4, 1, "", "irreps"], [2, 2, 1, "", "to_datagroup"], [2, 4, 1, "", "total_electrons"]], "turbomoleio.core.datagroups": [[2, 1, 1, "", "DataGroups"], [2, 3, 1, "", "cleanup_string"], [2, 3, 1, "", "compare_datagroup_string"], [2, 3, 1, "", "remove_comments"], [2, 3, 1, "", "remove_dg_from_list"], [2, 3, 1, "", "split_string_to_dg_list"]], "turbomoleio.core.datagroups.DataGroups": [[2, 2, 1, "", "add_data_group"], [2, 2, 1, "", "adg"], [2, 2, 1, "", "as_dict"], [2, 2, 1, "", "cdg"], [2, 2, 1, "", "change_data_group"], [2, 2, 1, "", "compare"], [2, 2, 1, "", "empty"], [2, 2, 1, "", "from_dict"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "kdg"], [2, 2, 1, "", "kill_data_group"], [2, 2, 1, "", "mdgo"], [2, 2, 1, "", "modify_data_group_options"], [2, 4, 1, "", "ndg"], [2, 4, 1, "", "number_of_data_groups"], [2, 2, 1, "", "sdg"], [2, 2, 1, "", "sdgo"], [2, 2, 1, "", "show_data_group"], [2, 2, 1, "", "show_data_group_option"], [2, 2, 1, "", "show_subfile_fname"], [2, 2, 1, "", "to_file"]], "turbomoleio.core.molecule": [[2, 1, 1, "", "BondAngle"], [2, 1, 1, "", "CollinearBendingAngle"], [2, 1, 1, "", "DihedralAngle"], [2, 1, 1, "", "Distance"], [2, 1, 1, "", "InternalDefinition"], [2, 1, 1, "", "InverseDistance"], [2, 1, 1, "", "MoleculeSystem"], [2, 1, 1, "", "OutOfPlaneAngle"], [2, 1, 1, "", "PerpendicularBendingAngle"]], "turbomoleio.core.molecule.BondAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.CollinearBendingAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.DihedralAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.Distance": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.InternalDefinition": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 2, 1, "", "from_string"], [2, 2, 1, "", "get_subclass_from_str"], [2, 2, 1, "", "is_valid"], [2, 5, 1, "", "n_atoms"], [2, 2, 1, "", "to_string"]], "turbomoleio.core.molecule.InverseDistance": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.MoleculeSystem": [[2, 2, 1, "", "add_bond_angle"], [2, 2, 1, "", "add_dihedral"], [2, 2, 1, "", "add_distance"], [2, 2, 1, "", "as_dict"], [2, 2, 1, "", "from_dict"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 2, 1, "", "get_int_def_inconsistencies"], [2, 2, 1, "", "has_inconsistencies"], [2, 4, 1, "", "molecule"], [2, 2, 1, "", "to_coord_string"]], "turbomoleio.core.molecule.OutOfPlaneAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.PerpendicularBendingAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.periodic": [[2, 1, 1, "", "PeriodicSystem"]], "turbomoleio.core.periodic.PeriodicSystem": [[2, 2, 1, "", "as_dict"], [2, 2, 1, "", "from_dict"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 4, 1, "", "structure"], [2, 2, 1, "", "to_coord_string"]], "turbomoleio.core.tests": [[3, 0, 0, "-", "test_control"], [3, 0, 0, "-", "test_datagroups"], [3, 0, 0, "-", "test_molecule"], [3, 0, 0, "-", "test_periodic"], [3, 0, 0, "-", "test_utils"]], "turbomoleio.core.tests.test_control": [[3, 1, 1, "", "TestControl"], [3, 1, 1, "", "TestDatagroupFunctions"], [3, 1, 1, "", "TestEnergy"], [3, 1, 1, "", "TestGradient"], [3, 1, 1, "", "TestShells"], [3, 3, 1, "", "check_equivalent_dg"]], "turbomoleio.core.tests.test_control.TestControl": [[3, 2, 1, "", "test_add_cosmo"], [3, 2, 1, "", "test_cpc"], [3, 2, 1, "", "test_disp"], [3, 2, 1, "", "test_energy"], [3, 2, 1, "", "test_from_file"], [3, 2, 1, "", "test_from_metric"], [3, 2, 1, "", "test_get_charge"], [3, 2, 1, "", "test_get_shells"], [3, 2, 1, "", "test_get_subfiles_list"], [3, 2, 1, "", "test_gradient"], [3, 2, 1, "", "test_is_uhf"], [3, 2, 1, "", "test_remove_energy"], [3, 2, 1, "", "test_remove_energy_in_control"], [3, 2, 1, "", "test_remove_gradient"], [3, 2, 1, "", "test_remove_gradient_in_control"]], "turbomoleio.core.tests.test_control.TestDatagroupFunctions": [[3, 5, 1, "", "pytestmark"], [3, 2, 1, "", "test_adg"], [3, 2, 1, "", "test_cdg"], [3, 2, 1, "", "test_cpc"], [3, 2, 1, "", "test_kdg"], [3, 2, 1, "", "test_mdgo"], [3, 2, 1, "", "test_sdg"], [3, 2, 1, "", "test_sdgo"]], "turbomoleio.core.tests.test_control.TestEnergy": [[3, 2, 1, "", "test_energy_mp2"], [3, 2, 1, "", "test_energy_scf"]], "turbomoleio.core.tests.test_control.TestGradient": [[3, 2, 1, "", "test_empty_gradient"], [3, 2, 1, "", "test_fail_parsing"], [3, 2, 1, "", "test_gradient"], [3, 2, 1, "", "test_periodic"]], "turbomoleio.core.tests.test_control.TestShells": [[3, 2, 1, "", "test_closed"], [3, 2, 1, "", "test_fail_parse"], [3, 2, 1, "", "test_fractional"], [3, 2, 1, "", "test_uhf"]], "turbomoleio.core.tests.test_datagroups": [[3, 3, 1, "", "test_cleanup"], [3, 3, 1, "", "test_compare"], [3, 3, 1, "", "test_compare_datagroup_string"], [3, 3, 1, "", "test_datagroups"], [3, 3, 1, "", "test_empty"], [3, 3, 1, "", "test_modify_data_group_options"], [3, 3, 1, "", "test_remove_comments"], [3, 3, 1, "", "test_remove_dg_from_list"], [3, 3, 1, "", "test_sdg_subfiles"], [3, 3, 1, "", "test_show_data_group_option"], [3, 3, 1, "", "test_show_subfile_fname"], [3, 3, 1, "", "test_split_string_to_dg_list"]], "turbomoleio.core.tests.test_molecule": [[3, 1, 1, "", "TestInternalDefinition"], [3, 1, 1, "", "TestMoleculeSystem"], [3, 3, 1, "", "check_dg"], [3, 3, 1, "", "check_user_defined_bonds_dg"]], "turbomoleio.core.tests.test_molecule.TestInternalDefinition": [[3, 5, 1, "", "pytestmark"], [3, 2, 1, "", "test_bond_angle"], [3, 2, 1, "", "test_collinear_bending_angle"], [3, 2, 1, "", "test_dihedral_angle"], [3, 2, 1, "", "test_distance"], [3, 2, 1, "", "test_from_string"], [3, 2, 1, "", "test_inverse_distance"], [3, 2, 1, "", "test_out_of_plane_angle"], [3, 2, 1, "", "test_perpendicular_bending_angle"]], "turbomoleio.core.tests.test_molecule.TestMoleculeSystem": [[3, 2, 1, "", "test_add_bond_angle"], [3, 2, 1, "", "test_add_dihedral"], [3, 2, 1, "", "test_add_distance"], [3, 2, 1, "", "test_check_index"], [3, 2, 1, "", "test_disordered"], [3, 2, 1, "", "test_dummy_atoms"], [3, 2, 1, "", "test_from_string"], [3, 2, 1, "", "test_to_coord_string"], [3, 2, 1, "", "test_to_file"]], "turbomoleio.core.tests.test_periodic": [[3, 1, 1, "", "TestPeriodicSystem"]], "turbomoleio.core.tests.test_periodic.TestPeriodicSystem": [[3, 2, 1, "", "test_periodic_2d"], [3, 2, 1, "", "test_periodic_3d"], [3, 2, 1, "", "test_periodic_wrong_rotation"], [3, 2, 1, "", "test_read_periodic_2d"]], "turbomoleio.core.tests.test_utils": [[3, 1, 1, "", "TestGetVersion"]], "turbomoleio.core.tests.test_utils.TestGetVersion": [[3, 2, 1, "", "test_V72"], [3, 2, 1, "", "test_V731"], [3, 2, 1, "", "test_V741"], [3, 2, 1, "", "test_V751"]], "turbomoleio.core.utils": [[2, 3, 1, "", "define_quit"], [2, 3, 1, "", "get_tm_version"]], "turbomoleio.input": [[4, 0, 0, "-", "define"], [5, 0, 0, "-", "templates"], [6, 0, 0, "-", "tests"], [4, 0, 0, "-", "utils"]], "turbomoleio.input.define": [[4, 6, 1, "", "DefineError"], [4, 6, 1, "", "DefineExpectError"], [4, 6, 1, "", "DefineIredError"], [4, 6, 1, "", "DefineParameterError"], [4, 1, 1, "", "DefineRunner"], [4, 6, 1, "", "UnsupportedDefineStateError"]], "turbomoleio.input.define.DefineRunner": [[4, 2, 1, "", "dump_command_file"], [4, 2, 1, "", "run_full"], [4, 2, 1, "", "run_generate_mo_files"], [4, 2, 1, "", "run_update_internal_coords"]], "turbomoleio.input.tests": [[6, 0, 0, "-", "test_define"], [6, 0, 0, "-", "test_utils"]], "turbomoleio.input.tests.test_define": [[6, 1, 1, "", "TestDefineRunner"], [6, 1, 1, "", "TestExceptions"], [6, 3, 1, "", "dr_data"]], "turbomoleio.input.tests.test_define.TestDefineRunner": [[6, 2, 1, "", "assert_sendline_calls"], [6, 2, 1, "", "assert_sendline_has_calls"], [6, 2, 1, "", "test_add_atomic_coordinates_from_file"], [6, 2, 1, "", "test_add_atomic_coordinates_from_file_cartesian"], [6, 2, 1, "", "test_add_cosmo"], [6, 2, 1, "", "test_close"], [6, 2, 1, "", "test_copy_mo_files_ab_mos"], [6, 2, 1, "", "test_copy_mo_files_alpha_beta"], [6, 2, 1, "", "test_copy_mo_files_error"], [6, 2, 1, "", "test_copy_mo_files_mo"], [6, 2, 1, "", "test_define_basis_sets"], [6, 2, 1, "", "test_define_core_potentials"], [6, 2, 1, "", "test_define_symmetry"], [6, 2, 1, "", "test_define_symmetry_error"], [6, 2, 1, "", "test_determine_symmetry"], [6, 2, 1, "", "test_determine_symmetry_eps"], [6, 2, 1, "", "test_dump_command_file"], [6, 2, 1, "", "test_excited_state_menu_error_not_activated"], [6, 2, 1, "", "test_excited_state_menu_frequency"], [6, 2, 1, "", "test_excited_state_menu_irrep"], [6, 2, 1, "", "test_excited_state_menu_irrep_wrong_sym"], [6, 2, 1, "", "test_excited_state_menu_polly"], [6, 2, 1, "", "test_excited_state_menu_rpas"], [6, 2, 1, "", "test_excited_state_menu_urpa"], [6, 2, 1, "", "test_excited_state_menu_urpa_error"], [6, 2, 1, "", "test_excited_state_menu_wrong_ex_method"], [6, 2, 1, "", "test_excited_state_menu_wrong_menu"], [6, 2, 1, "", "test_existing_coordinates"], [6, 2, 1, "", "test_existing_coordinates_cartesian"], [6, 2, 1, "", "test_existing_coordinates_error"], [6, 2, 1, "", "test_existing_coordinates_no_update"], [6, 2, 1, "", "test_existing_coordinates_unsupported"], [6, 2, 1, "", "test_expect"], [6, 2, 1, "", "test_expect_raise_eof"], [6, 2, 1, "", "test_expect_raise_timeout"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_charge"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_default"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_error"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_nocharge"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_unpaired"], [6, 2, 1, "", "test_general_menu_ccsdt"], [6, 2, 1, "", "test_general_menu_dft"], [6, 2, 1, "", "test_general_menu_hf"], [6, 2, 1, "", "test_general_menu_wrong_method"], [6, 2, 1, "", "test_generate_internal_coordinates"], [6, 2, 1, "", "test_generate_internal_coordinates_error"], [6, 2, 1, "", "test_geometry_menu_copymo"], [6, 2, 1, "", "test_geometry_menu_incompatibility_1"], [6, 2, 1, "", "test_geometry_menu_incompatibility_2"], [6, 2, 1, "", "test_geometry_menu_new_coords_1"], [6, 2, 1, "", "test_geometry_menu_new_coords_2"], [6, 2, 1, "", "test_geometry_menu_new_coords_3"], [6, 2, 1, "", "test_geometry_menu_new_coords_4"], [6, 2, 1, "", "test_geometry_menu_no_new_coords"], [6, 2, 1, "", "test_get_bin_path"], [6, 2, 1, "", "test_go_to_general_menu"], [6, 2, 1, "", "test_init"], [6, 2, 1, "", "test_initialize_control_1"], [6, 2, 1, "", "test_initialize_control_2"], [6, 2, 1, "", "test_initialize_control_incompatibility"], [6, 2, 1, "", "test_is_alive"], [6, 2, 1, "", "test_postprocess"], [6, 2, 1, "", "test_quit_general_menu"], [6, 2, 1, "", "test_run_full_1"], [6, 2, 1, "", "test_run_full_2"], [6, 2, 1, "", "test_run_generate_mo_files"], [6, 2, 1, "", "test_run_generate_mo_files_sym"], [6, 2, 1, "", "test_run_update_internal_coords"], [6, 2, 1, "", "test_run_update_internal_coords_error"], [6, 2, 1, "", "test_sendline"], [6, 2, 1, "", "test_set_basis"], [6, 2, 1, "", "test_set_basis_error"], [6, 2, 1, "", "test_set_basis_error_2"], [6, 2, 1, "", "test_set_basis_error_3"], [6, 2, 1, "", "test_set_dft_options_no_dft"], [6, 2, 1, "", "test_set_dft_options_use_dft"], [6, 2, 1, "", "test_set_dft_options_wrong_xc"], [6, 2, 1, "", "test_set_ecp_error"], [6, 2, 1, "", "test_set_ecp_error_2"], [6, 2, 1, "", "test_set_ecp_error_3"], [6, 2, 1, "", "test_set_metric"], [6, 2, 1, "", "test_set_mo_from_control_file"], [6, 2, 1, "", "test_set_mo_from_control_file_2"], [6, 2, 1, "", "test_set_mo_from_control_file_error"], [6, 2, 1, "", "test_set_mo_from_control_file_longpath"], [6, 2, 1, "", "test_set_mp2_options"], [6, 2, 1, "", "test_set_mp2_options_f12"], [6, 2, 1, "", "test_set_mp2_options_geoopt"], [6, 2, 1, "", "test_set_mp2_options_mp2"], [6, 2, 1, "", "test_set_mp2_options_mp2_error"], [6, 2, 1, "", "test_set_ri_state"], [6, 2, 1, "", "test_set_ri_state_marij"], [6, 2, 1, "", "test_set_scf_options"], [6, 2, 1, "", "test_skip_atomic_attribute_menu"], [6, 2, 1, "", "test_skip_atomic_attribute_menu_error"], [6, 2, 1, "", "test_skip_atomic_attribute_menu_internal"], [6, 2, 1, "", "test_switch_to_atomic_attribute_menu"], [6, 2, 1, "", "test_switch_to_atomic_attribute_menu_internal"], [6, 2, 1, "", "test_switch_to_atomic_attribute_menu_internal_error"], [6, 2, 1, "", "test_switch_to_molecular_orbital_definition_menu"], [6, 2, 1, "", "test_switch_to_scf_menu"]], "turbomoleio.input.tests.test_define.TestExceptions": [[6, 2, 1, "", "test_create"]], "turbomoleio.input.tests.test_utils": [[6, 3, 1, "", "test_get_define_template"], [6, 3, 1, "", "test_validate_parameters"]], "turbomoleio.input.utils": [[4, 6, 1, "", "ParametersValidationError"], [4, 3, 1, "", "ex_setter"], [4, 3, 1, "", "get_define_template"], [4, 7, 1, "", "schema_define_params"], [4, 3, 1, "", "validate_parameters"]], "turbomoleio.output": [[7, 0, 0, "-", "data"], [7, 0, 0, "-", "files"], [7, 0, 0, "-", "parser"], [7, 0, 0, "-", "states"], [8, 0, 0, "-", "tests"]], "turbomoleio.output.data": [[7, 1, 1, "", "AoforceNumericalIntegrationData"], [7, 1, 1, "", "AoforceRotationalData"], [7, 1, 1, "", "AoforceVibrationalData"], [7, 1, 1, "", "BaseData"], [7, 1, 1, "", "BasisData"], [7, 1, 1, "", "CosmoData"], [7, 1, 1, "", "DFTData"], [7, 1, 1, "", "DispersionCorrectionData"], [7, 1, 1, "", "ElectrostaticMomentsData"], [7, 1, 1, "", "EscfData"], [7, 1, 1, "", "EscfIterationData"], [7, 1, 1, "", "FunctionalData"], [7, 1, 1, "", "GeometryData"], [7, 1, 1, "", "IntegralData"], [7, 1, 1, "", "MP2Data"], [7, 1, 1, "", "MP2Results"], [7, 1, 1, "", "PeriodicityData"], [7, 1, 1, "", "RelaxConvergenceData"], [7, 1, 1, "", "RelaxData"], [7, 1, 1, "", "RelaxGradientsData"], [7, 1, 1, "", "RiData"], [7, 1, 1, "", "RunData"], [7, 1, 1, "", "ScfData"], [7, 1, 1, "", "ScfEnergiesData"], [7, 1, 1, "", "ScfIterationData"], [7, 1, 1, "", "SingleExcitation"], [7, 1, 1, "", "SmearingData"], [7, 1, 1, "", "SpinData"], [7, 1, 1, "", "StatptData"], [7, 1, 1, "", "SymmetryData"], [7, 1, 1, "", "TurbomoleData"]], "turbomoleio.output.data.AoforceNumericalIntegrationData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.AoforceRotationalData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.AoforceVibrationalData": [[7, 2, 1, "", "from_parser"], [7, 2, 1, "", "get_freqs_df"], [7, 2, 1, "", "n_negative_freqs"], [7, 2, 1, "", "n_positive_freqs"], [7, 2, 1, "", "n_zero_freqs"]], "turbomoleio.output.data.BaseData": [[7, 2, 1, "", "from_file"], [7, 2, 1, "", "from_parser"], [7, 2, 1, "", "from_string"]], "turbomoleio.output.data.BasisData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.CosmoData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.DFTData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.DispersionCorrectionData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.ElectrostaticMomentsData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.EscfData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.EscfIterationData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.FunctionalData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.GeometryData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.IntegralData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.MP2Data": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.MP2Results": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.PeriodicityData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RelaxConvergenceData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RelaxData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RelaxGradientsData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RiData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RunData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.ScfData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.ScfEnergiesData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.ScfIterationData": [[7, 2, 1, "", "from_parser"], [7, 2, 1, "", "plot_energies"]], "turbomoleio.output.data.SmearingData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.SpinData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.StatptData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.SymmetryData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.TurbomoleData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files": [[7, 1, 1, "", "AoforceOutput"], [7, 1, 1, "", "EgradOutput"], [7, 1, 1, "", "EscfOnlyOutput"], [7, 1, 1, "", "EscfOutput"], [7, 1, 1, "", "GradOutput"], [7, 1, 1, "", "JobexOutput"], [7, 1, 1, "", "MP2Output"], [7, 1, 1, "", "RelaxOutput"], [7, 1, 1, "", "Ricc2Output"], [7, 1, 1, "", "ScfOutput"], [7, 1, 1, "", "StatptOutput"]], "turbomoleio.output.files.AoforceOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.EgradOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.EscfOnlyOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.EscfOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.GradOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.JobexOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.MP2Output": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.RelaxOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.Ricc2Output": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.ScfOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.StatptOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.parser": [[7, 1, 1, "", "Parser"], [7, 3, 1, "", "convert_float"], [7, 3, 1, "", "convert_int"], [7, 3, 1, "", "convert_time_string"]], "turbomoleio.output.parser.Parser": [[7, 2, 1, "", "all_done"], [7, 2, 1, "", "aoforce_analysis"], [7, 2, 1, "", "aoforce_numerical_integration"], [7, 2, 1, "", "basis"], [7, 2, 1, "", "centers"], [7, 2, 1, "", "coordinates"], [7, 2, 1, "", "cosmo_header"], [7, 2, 1, "", "cosmo_results"], [7, 2, 1, "", "density_functional_data"], [7, 2, 1, "", "dftd"], [7, 2, 1, "", "egrad_excited_state"], [7, 2, 1, "", "electrostatic_moments"], [7, 2, 1, "", "escf_excitations"], [7, 2, 1, "", "escf_gs_total_en"], [7, 2, 1, "", "escf_iterations"], [7, 2, 1, "", "fermi"], [7, 2, 1, "", "from_file"], [7, 2, 1, "", "get_split_jobex_parsers"], [7, 2, 1, "", "get_value"], [7, 2, 1, "", "gradient"], [7, 2, 1, "", "grep_line"], [7, 2, 1, "", "header"], [7, 2, 1, "", "integral"], [7, 2, 1, "", "is_uhf"], [7, 2, 1, "", "mp2_data"], [7, 2, 1, "", "mp2_results"], [7, 2, 1, "", "periodicity_data"], [7, 2, 1, "", "pre_escf_run"], [7, 2, 1, "", "pre_scf_run"], [7, 2, 1, "", "rdgrad_memory"], [7, 2, 1, "", "relax_conv_info"], [7, 2, 1, "", "relax_gradient_values"], [7, 2, 1, "", "relax_info"], [7, 2, 1, "", "rij_info"], [7, 2, 1, "", "riper_scf_energies"], [7, 2, 1, "", "s2"], [7, 2, 1, "", "scf_energies"], [7, 2, 1, "", "scf_iterations"], [7, 2, 1, "", "statpt_info"], [7, 4, 1, "", "string"], [7, 2, 1, "", "symmetry"], [7, 2, 1, "", "timings"]], "turbomoleio.output.states": [[7, 1, 1, "", "EigerOutput"], [7, 1, 1, "", "EigerRunner"], [7, 1, 1, "", "State"], [7, 1, 1, "", "States"], [7, 3, 1, "", "get_mos_energies"]], "turbomoleio.output.states.EigerOutput": [[7, 2, 1, "", "compare_states"], [7, 2, 1, "", "from_file"], [7, 2, 1, "", "from_string"]], "turbomoleio.output.states.EigerRunner": [[7, 2, 1, "", "get_eiger_output"], [7, 2, 1, "", "run"], [7, 2, 1, "", "to_file"]], "turbomoleio.output.states.State": [[7, 2, 1, "", "as_dict"], [7, 2, 1, "", "from_dict"], [7, 4, 1, "", "has_fractional_occ"], [7, 4, 1, "", "max_occupation"]], "turbomoleio.output.states.States": [[7, 2, 1, "", "as_dict"], [7, 4, 1, "", "eigenvalues"], [7, 2, 1, "", "filter_states"], [7, 2, 1, "", "from_file"], [7, 4, 1, "", "gap"], [7, 2, 1, "", "generate_lowest_filled_states"], [7, 2, 1, "", "get_shells"], [7, 4, 1, "", "has_fractional_occ"], [7, 4, 1, "", "has_hole"], [7, 4, 1, "", "homo"], [7, 4, 1, "", "homo_index"], [7, 2, 1, "", "insert"], [7, 4, 1, "", "irrep_indices"], [7, 4, 1, "", "irreps"], [7, 4, 1, "", "is_uhf"], [7, 4, 1, "", "lumo"], [7, 4, 1, "", "lumo_index"], [7, 4, 1, "", "n_states"], [7, 4, 1, "", "occupations"], [7, 4, 1, "", "spins"], [7, 4, 1, "", "total_electrons"]], "turbomoleio.output.tests": [[8, 0, 0, "-", "test_data"], [8, 0, 0, "-", "test_files"], [8, 0, 0, "-", "test_parser"], [8, 0, 0, "-", "test_states"]], "turbomoleio.output.tests.test_data": [[8, 3, 1, "", "test_AoforceVibrationalData"], [8, 3, 1, "", "test_ScfIterationData"], [8, 3, 1, "", "test_str"]], "turbomoleio.output.tests.test_files": [[8, 1, 1, "", "TestFiles"], [8, 3, 1, "", "cls_dict_path"], [8, 3, 1, "", "generate_files"]], "turbomoleio.output.tests.test_files.TestFiles": [[8, 2, 1, "", "test_properties"]], "turbomoleio.output.tests.test_parser": [[8, 1, 1, "", "TestFunctions"], [8, 1, 1, "", "TestParser"], [8, 3, 1, "", "generate_files"], [8, 3, 1, "", "method"], [8, 3, 1, "", "parser_and_dict"]], "turbomoleio.output.tests.test_parser.TestFunctions": [[8, 2, 1, "", "test_convert_float"], [8, 2, 1, "", "test_convert_int"], [8, 2, 1, "", "test_convert_time_string"]], "turbomoleio.output.tests.test_parser.TestParser": [[8, 2, 1, "", "test_fail_all_done_check"], [8, 2, 1, "", "test_get_split_jobex_parsers"], [8, 2, 1, "", "test_get_value"], [8, 2, 1, "", "test_grep_line"], [8, 2, 1, "", "test_properties"]], "turbomoleio.output.tests.test_states": [[8, 3, 1, "", "test_closed"], [8, 3, 1, "", "test_eiger_runner"], [8, 3, 1, "", "test_error_homo"], [8, 3, 1, "", "test_hole"], [8, 3, 1, "", "test_no_empty_states"], [8, 3, 1, "", "test_parsing_failures"], [8, 3, 1, "", "test_state"], [8, 3, 1, "", "test_uhf"]], "turbomoleio.testfiles": [[9, 0, 0, "-", "utils"]], "turbomoleio.testfiles.utils": [[9, 1, 1, "", "ItestConfig"], [9, 6, 1, "", "ItestError"], [9, 3, 1, "", "assert_MSONable"], [9, 3, 1, "", "assert_almost_equal"], [9, 3, 1, "", "compare_differences"], [9, 3, 1, "", "generate_control_for_test"], [9, 3, 1, "", "generate_reference_out_parser_files"], [9, 3, 1, "", "generate_reference_output"], [9, 3, 1, "", "get_control_filepath"], [9, 3, 1, "", "get_control_integration"], [9, 3, 1, "", "get_sp"], [9, 3, 1, "", "get_tfp"], [9, 3, 1, "", "gisnan"], [9, 3, 1, "", "has_matplotlib"], [9, 3, 1, "", "run_itest"], [9, 3, 1, "", "temp_dir"], [9, 3, 1, "", "touch_file"]], "turbomoleio.testfiles.utils.ItestConfig": [[9, 5, 1, "", "define_timeout"], [9, 5, 1, "", "delete_tmp_dir"], [9, 5, 1, "", "dryrun"], [9, 5, 1, "", "dryrun_fpath"], [9, 5, 1, "", "dryrun_use_ref_control"], [9, 5, 1, "", "generate_ref"], [9, 5, 1, "", "tol"]]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:function", "4": "py:property", "5": "py:attribute", "6": "py:exception", "7": "py:data"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"], "4": ["py", "property", "Python property"], "5": ["py", "attribute", "Python attribute"], "6": ["py", "exception", "Python exception"], "7": ["py", "data", "Python data"]}, "titleterms": {"turbomoleio": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 21], "packag": [1, 2, 3, 4, 5, 6, 7, 8, 9], "subpackag": [1, 2, 4, 7], "modul": [1, 2, 3, 4, 5, 6, 7, 8, 9], "content": [1, 2, 3, 4, 5, 6, 7, 8, 9], "core": [2, 3], "submodul": [2, 3, 4, 6, 7, 8, 9], "base": 2, "control": [2, 14], "datagroup": [2, 14], "molecul": 2, "period": [2, 13], "symmetri": 2, "util": [2, 4, 9], "test": [3, 6, 8, 12, 16, 18, 19], "test_control": 3, "test_datagroup": 3, "test_molecul": 3, "test_period": 3, "test_util": [3, 6], "input": [4, 5, 6], "defin": [4, 15, 16], "templat": 5, "test_defin": 6, "output": [7, 8, 18, 19, 23], "data": [7, 14, 23], "file": [7, 13, 14, 23], "parser": 7, "state": [7, 23], "test_data": 8, "test_fil": 8, "test_pars": 8, "test_stat": 8, "testfil": 9, "appendix": 10, "report": 11, "bug": [11, 12], "changelog": 12, "releas": 12, "1": 12, "3": 12, "0": 12, "feb": 12, "24": 12, "2022": 12, "develop": [12, 21], "chang": [12, 19], "2": 12, "16": 12, "15": 12, "featur": 12, "ad": 12, "sep": 12, "20": 12, "2021": 12, "fix": 12, "mar": 12, "11": 12, "The": [13, 14, 15, 19, 23], "coord": 13, "system": 13, "group": 14, "object": [14, 23], "access": 14, "valu": 14, "modifi": 14, "run": 15, "definerunn": 15, "paramet": 15, "valid": [15, 16], "runner": 16, "contribut": [17, 21], "log": [18, 23], "pars": [18, 19, 23], "new": [18, 19], "quantiti": 18, "type": 18, "suit": 19, "unit": 19, "integr": 19, "write": 19, "turbomol": 19, "version": [19, 20], "standard": 19, "procedur": 19, "backward": 20, "compat": 20, "user": 21, "guid": 21, "addit": 21, "inform": 21, "indic": 21, "tabl": 21, "licens": 22, "quick": 23, "start": 23, "overal": 23, "structur": 23, "common": 23}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "sphinx": 58}, "alltitles": {"turbomoleio": [[0, "turbomoleio"], [21, "turbomoleio"]], "turbomoleio package": [[1, "turbomoleio-package"]], "Subpackages": [[1, "subpackages"], [2, "subpackages"], [4, "subpackages"], [7, "subpackages"]], "Module contents": [[1, "module-turbomoleio"], [2, "module-turbomoleio.core"], [3, "module-turbomoleio.core.tests"], [4, "module-turbomoleio.input"], [5, "module-turbomoleio.input.templates"], [6, "module-turbomoleio.input.tests"], [7, "module-turbomoleio.output"], [8, "module-turbomoleio.output.tests"], [9, "module-turbomoleio.testfiles"]], "turbomoleio.core package": [[2, "turbomoleio-core-package"]], "Submodules": [[2, "submodules"], [3, "submodules"], [4, "submodules"], [6, "submodules"], [7, "submodules"], [8, "submodules"], [9, "submodules"]], "turbomoleio.core.base module": [[2, "module-turbomoleio.core.base"]], "turbomoleio.core.control module": [[2, "module-turbomoleio.core.control"]], "turbomoleio.core.datagroups module": [[2, "module-turbomoleio.core.datagroups"]], "turbomoleio.core.molecule module": [[2, "module-turbomoleio.core.molecule"]], "turbomoleio.core.periodic module": [[2, "module-turbomoleio.core.periodic"]], "turbomoleio.core.symmetry module": [[2, "module-turbomoleio.core.symmetry"]], "turbomoleio.core.utils module": [[2, "module-turbomoleio.core.utils"]], "turbomoleio.core.tests package": [[3, "turbomoleio-core-tests-package"]], "turbomoleio.core.tests.test_control module": [[3, "module-turbomoleio.core.tests.test_control"]], "turbomoleio.core.tests.test_datagroups module": [[3, "module-turbomoleio.core.tests.test_datagroups"]], "turbomoleio.core.tests.test_molecule module": [[3, "module-turbomoleio.core.tests.test_molecule"]], "turbomoleio.core.tests.test_periodic module": [[3, "module-turbomoleio.core.tests.test_periodic"]], "turbomoleio.core.tests.test_utils module": [[3, "module-turbomoleio.core.tests.test_utils"]], "turbomoleio.input package": [[4, "turbomoleio-input-package"]], "turbomoleio.input.define module": [[4, "module-turbomoleio.input.define"]], "turbomoleio.input.utils module": [[4, "module-turbomoleio.input.utils"]], "turbomoleio.input.templates package": [[5, "turbomoleio-input-templates-package"]], "turbomoleio.input.tests package": [[6, "turbomoleio-input-tests-package"]], "turbomoleio.input.tests.test_define module": [[6, "module-turbomoleio.input.tests.test_define"]], "turbomoleio.input.tests.test_utils module": [[6, "module-turbomoleio.input.tests.test_utils"]], "turbomoleio.output package": [[7, "turbomoleio-output-package"]], "turbomoleio.output.data module": [[7, "module-turbomoleio.output.data"]], "turbomoleio.output.files module": [[7, "module-turbomoleio.output.files"]], "turbomoleio.output.parser module": [[7, "module-turbomoleio.output.parser"]], "turbomoleio.output.states module": [[7, "module-turbomoleio.output.states"]], "turbomoleio.output.tests package": [[8, "turbomoleio-output-tests-package"]], "turbomoleio.output.tests.test_data module": [[8, "module-turbomoleio.output.tests.test_data"]], "turbomoleio.output.tests.test_files module": [[8, "module-turbomoleio.output.tests.test_files"]], "turbomoleio.output.tests.test_parser module": [[8, "module-turbomoleio.output.tests.test_parser"]], "turbomoleio.output.tests.test_states module": [[8, "module-turbomoleio.output.tests.test_states"]], "turbomoleio.testfiles package": [[9, "turbomoleio-testfiles-package"]], "turbomoleio.testfiles.utils module": [[9, "module-turbomoleio.testfiles.utils"]], "Appendix": [[10, "appendix"]], "Reporting bugs": [[11, "reporting-bugs"]], "Changelog": [[12, "changelog"]], "Release 1.3.0 (Feb 24, 2022)": [[12, "release-1-3-0-feb-24-2022"]], "Developer changes": [[12, "developer-changes"]], "Release 1.2.0 (Feb 16, 2022)": [[12, "release-1-2-0-feb-16-2022"]], "Release 1.1.1 (Feb 15, 2022)": [[12, "release-1-1-1-feb-15-2022"]], "Features added": [[12, "features-added"], [12, "id1"]], "Release 1.1.0 (Sep 20, 2021)": [[12, "release-1-1-0-sep-20-2021"]], "Bug fixing": [[12, "bug-fixing"]], "Testing and development": [[12, "testing-and-development"]], "Release 1.0.0 (Mar 11, 2021)": [[12, "release-1-0-0-mar-11-2021"]], "The coord file": [[13, "the-coord-file"]], "Periodic systems": [[13, "periodic-systems"]], "The data group files": [[14, "the-data-group-files"]], "The DataGroups object": [[14, "the-datagroups-object"]], "Accessing a data group value": [[14, "accessing-a-data-group-value"]], "Modifying a data group value": [[14, "modifying-a-data-group-value"]], "The Control object": [[14, "the-control-object"]], "Running define": [[15, "running-define"]], "The DefineRunner parameters": [[15, "the-definerunner-parameters"]], "Validation": [[15, "validation"], [16, "validation"]], "Define runner": [[16, "define-runner"]], "Tests": [[16, "tests"], [18, "tests"]], "Contributing": [[17, "contributing"]], "Output logs parsing": [[18, "output-logs-parsing"]], "Parsing a new quantity": [[18, "parsing-a-new-quantity"]], "Parsing a new type of log": [[18, "parsing-a-new-type-of-log"]], "Testing": [[19, "testing"]], "The test suite": [[19, "the-test-suite"]], "Unit tests": [[19, "unit-tests"]], "Integration tests": [[19, "integration-tests"], [19, "id1"]], "Writing new tests": [[19, "writing-new-tests"]], "Tests for output parsing": [[19, "tests-for-output-parsing"]], "Turbomole version change": [[19, "turbomole-version-change"]], "Standard procedure": [[19, "standard-procedure"]], "Unit-tests for output parsing": [[19, "unit-tests-for-output-parsing"]], "Versioning": [[20, "versioning"]], "Backward-compatibility": [[20, "backward-compatibility"]], "User guide": [[21, null]], "Contributing to turbomoleio": [[21, "contributing-to-turbomoleio"]], "Developer guide": [[21, null]], "Additional information": [[21, "additional-information"], [21, null]], "Indices and tables": [[21, "indices-and-tables"]], "License": [[22, "license"]], "Outputs parsing": [[23, "outputs-parsing"]], "The log files": [[23, "the-log-files"]], "Quick Start": [[23, "quick-start"]], "Overall Structure": [[23, "overall-structure"]], "Data and File Objects": [[23, "data-and-file-objects"]], "Common data objects": [[23, "common-data-objects"]], "File data objects": [[23, "file-data-objects"]], "The States object": [[23, "the-states-object"]]}, "indexentries": {"module": [[1, "module-turbomoleio"], [2, "module-turbomoleio.core"], [2, "module-turbomoleio.core.base"], [2, "module-turbomoleio.core.control"], [2, "module-turbomoleio.core.datagroups"], [2, "module-turbomoleio.core.molecule"], [2, "module-turbomoleio.core.periodic"], [2, "module-turbomoleio.core.symmetry"], [2, "module-turbomoleio.core.utils"], [3, "module-turbomoleio.core.tests"], [3, "module-turbomoleio.core.tests.test_control"], [3, "module-turbomoleio.core.tests.test_datagroups"], [3, "module-turbomoleio.core.tests.test_molecule"], [3, "module-turbomoleio.core.tests.test_periodic"], [3, "module-turbomoleio.core.tests.test_utils"], [4, "module-turbomoleio.input"], [4, "module-turbomoleio.input.define"], [4, "module-turbomoleio.input.utils"], [5, "module-turbomoleio.input.templates"], [6, "module-turbomoleio.input.tests"], [6, "module-turbomoleio.input.tests.test_define"], [6, "module-turbomoleio.input.tests.test_utils"], [7, "module-turbomoleio.output"], [7, "module-turbomoleio.output.data"], [7, "module-turbomoleio.output.files"], [7, "module-turbomoleio.output.parser"], [7, "module-turbomoleio.output.states"], [8, "module-turbomoleio.output.tests"], [8, "module-turbomoleio.output.tests.test_data"], [8, "module-turbomoleio.output.tests.test_files"], [8, "module-turbomoleio.output.tests.test_parser"], [8, "module-turbomoleio.output.tests.test_states"], [9, "module-turbomoleio.testfiles"], [9, "module-turbomoleio.testfiles.utils"]], "turbomoleio": [[1, "module-turbomoleio"]], "basesystem (class in turbomoleio.core.base)": [[2, "turbomoleio.core.base.BaseSystem"]], "bondangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.BondAngle"]], "collinearbendingangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle"]], "control (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Control"]], "datagroups (class in turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.DataGroups"]], "defaults (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Defaults"]], "dihedralangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.DihedralAngle"]], "distance (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.Distance"]], "energy (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Energy"]], "gradient (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Gradient"]], "internaldefinition (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.InternalDefinition"]], "inversedistance (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.InverseDistance"]], "metric (turbomoleio.core.control.defaults attribute)": [[2, "turbomoleio.core.control.Defaults.METRIC"]], "moleculesystem (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.MoleculeSystem"]], "outofplaneangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle"]], "periodicsystem (class in turbomoleio.core.periodic)": [[2, "turbomoleio.core.periodic.PeriodicSystem"]], "perpendicularbendingangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle"]], "shells (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Shells"]], "add_bond_angle() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.add_bond_angle"]], "add_cosmo() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.add_cosmo"]], "add_data_group() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.add_data_group"]], "add_dihedral() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.add_dihedral"]], "add_distance() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.add_distance"]], "adg() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.adg"]], "adg() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.adg"]], "as_dict() (turbomoleio.core.control.shells method)": [[2, "turbomoleio.core.control.Shells.as_dict"]], "as_dict() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.as_dict"]], "as_dict() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.as_dict"]], "as_dict() (turbomoleio.core.periodic.periodicsystem method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.as_dict"]], "cdg() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.cdg"]], "cdg() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.cdg"]], "change_data_group() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.change_data_group"]], "cleanup_string() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.cleanup_string"]], "compare() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.compare"]], "compare_datagroup_string() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.compare_datagroup_string"]], "compute_value() (turbomoleio.core.molecule.bondangle method)": [[2, "turbomoleio.core.molecule.BondAngle.compute_value"]], "compute_value() (turbomoleio.core.molecule.collinearbendingangle method)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle.compute_value"]], "compute_value() (turbomoleio.core.molecule.dihedralangle method)": [[2, "turbomoleio.core.molecule.DihedralAngle.compute_value"]], "compute_value() (turbomoleio.core.molecule.distance method)": [[2, "turbomoleio.core.molecule.Distance.compute_value"]], "compute_value() (turbomoleio.core.molecule.internaldefinition method)": [[2, "turbomoleio.core.molecule.InternalDefinition.compute_value"]], "compute_value() (turbomoleio.core.molecule.inversedistance method)": [[2, "turbomoleio.core.molecule.InverseDistance.compute_value"]], "compute_value() (turbomoleio.core.molecule.outofplaneangle method)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle.compute_value"]], "compute_value() (turbomoleio.core.molecule.perpendicularbendingangle method)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle.compute_value"]], "coord_lines() (turbomoleio.core.base.basesystem method)": [[2, "turbomoleio.core.base.BaseSystem.coord_lines"]], "coord_str (turbomoleio.core.molecule.bondangle attribute)": [[2, "turbomoleio.core.molecule.BondAngle.coord_str"]], "coord_str (turbomoleio.core.molecule.collinearbendingangle attribute)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle.coord_str"]], "coord_str (turbomoleio.core.molecule.dihedralangle attribute)": [[2, "turbomoleio.core.molecule.DihedralAngle.coord_str"]], "coord_str (turbomoleio.core.molecule.distance attribute)": [[2, "turbomoleio.core.molecule.Distance.coord_str"]], "coord_str (turbomoleio.core.molecule.internaldefinition attribute)": [[2, "turbomoleio.core.molecule.InternalDefinition.coord_str"]], "coord_str (turbomoleio.core.molecule.inversedistance attribute)": [[2, "turbomoleio.core.molecule.InverseDistance.coord_str"]], "coord_str (turbomoleio.core.molecule.outofplaneangle attribute)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle.coord_str"]], "coord_str (turbomoleio.core.molecule.perpendicularbendingangle attribute)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle.coord_str"]], "coord_type (turbomoleio.core.molecule.bondangle attribute)": [[2, "turbomoleio.core.molecule.BondAngle.coord_type"]], "coord_type (turbomoleio.core.molecule.collinearbendingangle attribute)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle.coord_type"]], "coord_type (turbomoleio.core.molecule.dihedralangle attribute)": [[2, "turbomoleio.core.molecule.DihedralAngle.coord_type"]], "coord_type (turbomoleio.core.molecule.distance attribute)": [[2, "turbomoleio.core.molecule.Distance.coord_type"]], "coord_type (turbomoleio.core.molecule.internaldefinition attribute)": [[2, "turbomoleio.core.molecule.InternalDefinition.coord_type"]], "coord_type (turbomoleio.core.molecule.inversedistance attribute)": [[2, "turbomoleio.core.molecule.InverseDistance.coord_type"]], "coord_type (turbomoleio.core.molecule.outofplaneangle attribute)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle.coord_type"]], "coord_type (turbomoleio.core.molecule.perpendicularbendingangle attribute)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle.coord_type"]], "cpc() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.cpc"]], "cpc() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.cpc"]], "define_quit() (in module turbomoleio.core.utils)": [[2, "turbomoleio.core.utils.define_quit"]], "delta_e (turbomoleio.core.control.energy property)": [[2, "turbomoleio.core.control.Energy.delta_e"]], "empty() (turbomoleio.core.datagroups.datagroups class method)": [[2, "turbomoleio.core.datagroups.DataGroups.empty"]], "energy (turbomoleio.core.control.control property)": [[2, "turbomoleio.core.control.Control.energy"]], "from_dict() (turbomoleio.core.control.shells class method)": [[2, "turbomoleio.core.control.Shells.from_dict"]], "from_dict() (turbomoleio.core.datagroups.datagroups class method)": [[2, "turbomoleio.core.datagroups.DataGroups.from_dict"]], "from_dict() (turbomoleio.core.molecule.moleculesystem class method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.from_dict"]], "from_dict() (turbomoleio.core.periodic.periodicsystem class method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.from_dict"]], "from_file() (turbomoleio.core.control.control class method)": [[2, "turbomoleio.core.control.Control.from_file"]], "from_file() (turbomoleio.core.control.energy class method)": [[2, "turbomoleio.core.control.Energy.from_file"]], "from_file() (turbomoleio.core.control.gradient class method)": [[2, "turbomoleio.core.control.Gradient.from_file"]], "from_file() (turbomoleio.core.control.shells class method)": [[2, "turbomoleio.core.control.Shells.from_file"]], "from_file() (turbomoleio.core.datagroups.datagroups class method)": [[2, "turbomoleio.core.datagroups.DataGroups.from_file"]], "from_file() (turbomoleio.core.molecule.moleculesystem class method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.from_file"]], "from_file() (turbomoleio.core.periodic.periodicsystem class method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.from_file"]], "from_metric() (turbomoleio.core.control.control class method)": [[2, "turbomoleio.core.control.Control.from_metric"]], "from_string() (turbomoleio.core.control.energy class method)": [[2, "turbomoleio.core.control.Energy.from_string"]], "from_string() (turbomoleio.core.control.gradient class method)": [[2, "turbomoleio.core.control.Gradient.from_string"]], "from_string() (turbomoleio.core.control.shells class method)": [[2, "turbomoleio.core.control.Shells.from_string"]], "from_string() (turbomoleio.core.molecule.internaldefinition class method)": [[2, "turbomoleio.core.molecule.InternalDefinition.from_string"]], "from_string() (turbomoleio.core.molecule.moleculesystem class method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.from_string"]], "from_string() (turbomoleio.core.periodic.periodicsystem class method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.from_string"]], "get_charge() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.get_charge"]], "get_coord_lines() (in module turbomoleio.core.base)": [[2, "turbomoleio.core.base.get_coord_lines"]], "get_int_def_inconsistencies() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.get_int_def_inconsistencies"]], "get_mol_and_indices_frozen() (in module turbomoleio.core.base)": [[2, "turbomoleio.core.base.get_mol_and_indices_frozen"]], "get_shells() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.get_shells"]], "get_subclass_from_str() (turbomoleio.core.molecule.internaldefinition static method)": [[2, "turbomoleio.core.molecule.InternalDefinition.get_subclass_from_str"]], "get_subfiles_list() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.get_subfiles_list"]], "get_tm_version() (in module turbomoleio.core.utils)": [[2, "turbomoleio.core.utils.get_tm_version"]], "gradient (turbomoleio.core.control.control property)": [[2, "turbomoleio.core.control.Control.gradient"]], "has_inconsistencies() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.has_inconsistencies"]], "irreps (turbomoleio.core.control.shells property)": [[2, "turbomoleio.core.control.Shells.irreps"]], "is_uhf (turbomoleio.core.control.control property)": [[2, "turbomoleio.core.control.Control.is_uhf"]], "is_valid() (turbomoleio.core.molecule.internaldefinition method)": [[2, "turbomoleio.core.molecule.InternalDefinition.is_valid"]], "kdg() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.kdg"]], "kdg() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.kdg"]], "kill_data_group() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.kill_data_group"]], "last_grad_max (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.last_grad_max"]], "last_grad_norm (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.last_grad_norm"]], "max_gradients (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.max_gradients"]], "mdgo() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.mdgo"]], "mdgo() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.mdgo"]], "modify_data_group_options() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.modify_data_group_options"]], "molecule (turbomoleio.core.molecule.moleculesystem property)": [[2, "turbomoleio.core.molecule.MoleculeSystem.molecule"]], "n_atoms (turbomoleio.core.molecule.bondangle attribute)": [[2, "turbomoleio.core.molecule.BondAngle.n_atoms"]], "n_atoms (turbomoleio.core.molecule.collinearbendingangle attribute)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle.n_atoms"]], "n_atoms (turbomoleio.core.molecule.dihedralangle attribute)": [[2, "turbomoleio.core.molecule.DihedralAngle.n_atoms"]], "n_atoms (turbomoleio.core.molecule.distance attribute)": [[2, "turbomoleio.core.molecule.Distance.n_atoms"]], "n_atoms (turbomoleio.core.molecule.internaldefinition attribute)": [[2, "turbomoleio.core.molecule.InternalDefinition.n_atoms"]], "n_atoms (turbomoleio.core.molecule.inversedistance attribute)": [[2, "turbomoleio.core.molecule.InverseDistance.n_atoms"]], "n_atoms (turbomoleio.core.molecule.outofplaneangle attribute)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle.n_atoms"]], "n_atoms (turbomoleio.core.molecule.perpendicularbendingangle attribute)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle.n_atoms"]], "n_steps (turbomoleio.core.control.energy property)": [[2, "turbomoleio.core.control.Energy.n_steps"]], "n_steps (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.n_steps"]], "ndg (turbomoleio.core.datagroups.datagroups property)": [[2, "turbomoleio.core.datagroups.DataGroups.ndg"]], "norms (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.norms"]], "number_of_data_groups (turbomoleio.core.datagroups.datagroups property)": [[2, "turbomoleio.core.datagroups.DataGroups.number_of_data_groups"]], "plot() (turbomoleio.core.control.energy method)": [[2, "turbomoleio.core.control.Energy.plot"]], "plot() (turbomoleio.core.control.gradient method)": [[2, "turbomoleio.core.control.Gradient.plot"]], "remove_comments() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.remove_comments"]], "remove_dg_from_list() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.remove_dg_from_list"]], "remove_last_energy() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.remove_last_energy"]], "remove_last_gradient() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.remove_last_gradient"]], "sdg() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.sdg"]], "sdg() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.sdg"]], "sdgo() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.sdgo"]], "sdgo() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.sdgo"]], "set_disp() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.set_disp"]], "show_data_group() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.show_data_group"]], "show_data_group_option() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.show_data_group_option"]], "show_subfile_fname() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.show_subfile_fname"]], "split_string_to_dg_list() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.split_string_to_dg_list"]], "structure (turbomoleio.core.periodic.periodicsystem property)": [[2, "turbomoleio.core.periodic.PeriodicSystem.structure"]], "to_coord_file() (turbomoleio.core.base.basesystem method)": [[2, "turbomoleio.core.base.BaseSystem.to_coord_file"]], "to_coord_string() (turbomoleio.core.base.basesystem method)": [[2, "turbomoleio.core.base.BaseSystem.to_coord_string"]], "to_coord_string() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.to_coord_string"]], "to_coord_string() (turbomoleio.core.periodic.periodicsystem method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.to_coord_string"]], "to_datagroup() (turbomoleio.core.control.shells method)": [[2, "turbomoleio.core.control.Shells.to_datagroup"]], "to_file() (turbomoleio.core.base.basesystem method)": [[2, "turbomoleio.core.base.BaseSystem.to_file"]], "to_file() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.to_file"]], "to_file() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.to_file"]], "to_string() (turbomoleio.core.molecule.internaldefinition method)": [[2, "turbomoleio.core.molecule.InternalDefinition.to_string"]], "total_electrons (turbomoleio.core.control.shells property)": [[2, "turbomoleio.core.control.Shells.total_electrons"]], "turbomoleio.core": [[2, "module-turbomoleio.core"]], "turbomoleio.core.base": [[2, "module-turbomoleio.core.base"]], "turbomoleio.core.control": [[2, "module-turbomoleio.core.control"]], "turbomoleio.core.datagroups": [[2, "module-turbomoleio.core.datagroups"]], "turbomoleio.core.molecule": [[2, "module-turbomoleio.core.molecule"]], "turbomoleio.core.periodic": [[2, "module-turbomoleio.core.periodic"]], "turbomoleio.core.symmetry": [[2, "module-turbomoleio.core.symmetry"]], "turbomoleio.core.utils": [[2, "module-turbomoleio.core.utils"]], "testcontrol (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestControl"]], "testdatagroupfunctions (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions"]], "testenergy (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestEnergy"]], "testgetversion (class in turbomoleio.core.tests.test_utils)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion"]], "testgradient (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestGradient"]], "testinternaldefinition (class in turbomoleio.core.tests.test_molecule)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition"]], "testmoleculesystem (class in turbomoleio.core.tests.test_molecule)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem"]], "testperiodicsystem (class in turbomoleio.core.tests.test_periodic)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem"]], "testshells (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestShells"]], "check_dg() (in module turbomoleio.core.tests.test_molecule)": [[3, "turbomoleio.core.tests.test_molecule.check_dg"]], "check_equivalent_dg() (in module turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.check_equivalent_dg"]], "check_user_defined_bonds_dg() (in module turbomoleio.core.tests.test_molecule)": [[3, "turbomoleio.core.tests.test_molecule.check_user_defined_bonds_dg"]], "pytestmark (turbomoleio.core.tests.test_control.testdatagroupfunctions attribute)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.pytestmark"]], "pytestmark (turbomoleio.core.tests.test_molecule.testinternaldefinition attribute)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.pytestmark"]], "test_v72() (turbomoleio.core.tests.test_utils.testgetversion method)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion.test_V72"]], "test_v731() (turbomoleio.core.tests.test_utils.testgetversion method)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion.test_V731"]], "test_v741() (turbomoleio.core.tests.test_utils.testgetversion method)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion.test_V741"]], "test_v751() (turbomoleio.core.tests.test_utils.testgetversion method)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion.test_V751"]], "test_add_bond_angle() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_add_bond_angle"]], "test_add_cosmo() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_add_cosmo"]], "test_add_dihedral() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_add_dihedral"]], "test_add_distance() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_add_distance"]], "test_adg() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_adg"]], "test_bond_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_bond_angle"]], "test_cdg() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_cdg"]], "test_check_index() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_check_index"]], "test_cleanup() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_cleanup"]], "test_closed() (turbomoleio.core.tests.test_control.testshells method)": [[3, "turbomoleio.core.tests.test_control.TestShells.test_closed"]], "test_collinear_bending_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_collinear_bending_angle"]], "test_compare() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_compare"]], "test_compare_datagroup_string() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_compare_datagroup_string"]], "test_cpc() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_cpc"]], "test_cpc() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_cpc"]], "test_datagroups() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_datagroups"]], "test_dihedral_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_dihedral_angle"]], "test_disordered() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_disordered"]], "test_disp() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_disp"]], "test_distance() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_distance"]], "test_dummy_atoms() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_dummy_atoms"]], "test_empty() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_empty"]], "test_empty_gradient() (turbomoleio.core.tests.test_control.testgradient method)": [[3, "turbomoleio.core.tests.test_control.TestGradient.test_empty_gradient"]], "test_energy() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_energy"]], "test_energy_mp2() (turbomoleio.core.tests.test_control.testenergy method)": [[3, "turbomoleio.core.tests.test_control.TestEnergy.test_energy_mp2"]], "test_energy_scf() (turbomoleio.core.tests.test_control.testenergy method)": [[3, "turbomoleio.core.tests.test_control.TestEnergy.test_energy_scf"]], "test_fail_parse() (turbomoleio.core.tests.test_control.testshells method)": [[3, "turbomoleio.core.tests.test_control.TestShells.test_fail_parse"]], "test_fail_parsing() (turbomoleio.core.tests.test_control.testgradient method)": [[3, "turbomoleio.core.tests.test_control.TestGradient.test_fail_parsing"]], "test_fractional() (turbomoleio.core.tests.test_control.testshells method)": [[3, "turbomoleio.core.tests.test_control.TestShells.test_fractional"]], "test_from_file() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_from_file"]], "test_from_metric() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_from_metric"]], "test_from_string() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_from_string"]], "test_from_string() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_from_string"]], "test_get_charge() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_get_charge"]], "test_get_shells() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_get_shells"]], "test_get_subfiles_list() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_get_subfiles_list"]], "test_gradient() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_gradient"]], "test_gradient() (turbomoleio.core.tests.test_control.testgradient method)": [[3, "turbomoleio.core.tests.test_control.TestGradient.test_gradient"]], "test_inverse_distance() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_inverse_distance"]], "test_is_uhf() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_is_uhf"]], "test_kdg() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_kdg"]], "test_mdgo() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_mdgo"]], "test_modify_data_group_options() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_modify_data_group_options"]], "test_out_of_plane_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_out_of_plane_angle"]], "test_periodic() (turbomoleio.core.tests.test_control.testgradient method)": [[3, "turbomoleio.core.tests.test_control.TestGradient.test_periodic"]], "test_periodic_2d() (turbomoleio.core.tests.test_periodic.testperiodicsystem method)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem.test_periodic_2d"]], "test_periodic_3d() (turbomoleio.core.tests.test_periodic.testperiodicsystem method)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem.test_periodic_3d"]], "test_periodic_wrong_rotation() (turbomoleio.core.tests.test_periodic.testperiodicsystem method)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem.test_periodic_wrong_rotation"]], "test_perpendicular_bending_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_perpendicular_bending_angle"]], "test_read_periodic_2d() (turbomoleio.core.tests.test_periodic.testperiodicsystem method)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem.test_read_periodic_2d"]], "test_remove_comments() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_remove_comments"]], "test_remove_dg_from_list() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_remove_dg_from_list"]], "test_remove_energy() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_remove_energy"]], "test_remove_energy_in_control() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_remove_energy_in_control"]], "test_remove_gradient() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_remove_gradient"]], "test_remove_gradient_in_control() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_remove_gradient_in_control"]], "test_sdg() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_sdg"]], "test_sdg_subfiles() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_sdg_subfiles"]], "test_sdgo() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_sdgo"]], "test_show_data_group_option() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_show_data_group_option"]], "test_show_subfile_fname() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_show_subfile_fname"]], "test_split_string_to_dg_list() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_split_string_to_dg_list"]], "test_to_coord_string() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_to_coord_string"]], "test_to_file() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_to_file"]], "test_uhf() (turbomoleio.core.tests.test_control.testshells method)": [[3, "turbomoleio.core.tests.test_control.TestShells.test_uhf"]], "turbomoleio.core.tests": [[3, "module-turbomoleio.core.tests"]], "turbomoleio.core.tests.test_control": [[3, "module-turbomoleio.core.tests.test_control"]], "turbomoleio.core.tests.test_datagroups": [[3, "module-turbomoleio.core.tests.test_datagroups"]], "turbomoleio.core.tests.test_molecule": [[3, "module-turbomoleio.core.tests.test_molecule"]], "turbomoleio.core.tests.test_periodic": [[3, "module-turbomoleio.core.tests.test_periodic"]], "turbomoleio.core.tests.test_utils": [[3, "module-turbomoleio.core.tests.test_utils"]], "defineerror": [[4, "turbomoleio.input.define.DefineError"]], "defineexpecterror": [[4, "turbomoleio.input.define.DefineExpectError"]], "defineirederror": [[4, "turbomoleio.input.define.DefineIredError"]], "defineparametererror": [[4, "turbomoleio.input.define.DefineParameterError"]], "definerunner (class in turbomoleio.input.define)": [[4, "turbomoleio.input.define.DefineRunner"]], "parametersvalidationerror": [[4, "turbomoleio.input.utils.ParametersValidationError"]], "unsupporteddefinestateerror": [[4, "turbomoleio.input.define.UnsupportedDefineStateError"]], "dump_command_file() (turbomoleio.input.define.definerunner method)": [[4, "turbomoleio.input.define.DefineRunner.dump_command_file"]], "ex_setter() (in module turbomoleio.input.utils)": [[4, "turbomoleio.input.utils.ex_setter"]], "get_define_template() (in module turbomoleio.input.utils)": [[4, "turbomoleio.input.utils.get_define_template"]], "run_full() (turbomoleio.input.define.definerunner method)": [[4, "turbomoleio.input.define.DefineRunner.run_full"]], "run_generate_mo_files() (turbomoleio.input.define.definerunner method)": [[4, "turbomoleio.input.define.DefineRunner.run_generate_mo_files"]], "run_update_internal_coords() (turbomoleio.input.define.definerunner method)": [[4, "turbomoleio.input.define.DefineRunner.run_update_internal_coords"]], "schema_define_params (in module turbomoleio.input.utils)": [[4, "turbomoleio.input.utils.schema_define_params"]], "turbomoleio.input": [[4, "module-turbomoleio.input"]], "turbomoleio.input.define": [[4, "module-turbomoleio.input.define"]], "turbomoleio.input.utils": [[4, "module-turbomoleio.input.utils"]], "validate_parameters() (in module turbomoleio.input.utils)": [[4, "turbomoleio.input.utils.validate_parameters"]], "turbomoleio.input.templates": [[5, "module-turbomoleio.input.templates"]], "testdefinerunner (class in turbomoleio.input.tests.test_define)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner"]], "testexceptions (class in turbomoleio.input.tests.test_define)": [[6, "turbomoleio.input.tests.test_define.TestExceptions"]], "assert_sendline_calls() (turbomoleio.input.tests.test_define.testdefinerunner static method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.assert_sendline_calls"]], "assert_sendline_has_calls() (turbomoleio.input.tests.test_define.testdefinerunner static method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.assert_sendline_has_calls"]], "dr_data() (in module turbomoleio.input.tests.test_define)": [[6, "turbomoleio.input.tests.test_define.dr_data"]], "test_add_atomic_coordinates_from_file() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_add_atomic_coordinates_from_file"]], "test_add_atomic_coordinates_from_file_cartesian() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_add_atomic_coordinates_from_file_cartesian"]], "test_add_cosmo() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_add_cosmo"]], "test_close() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_close"]], "test_copy_mo_files_ab_mos() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_copy_mo_files_ab_mos"]], "test_copy_mo_files_alpha_beta() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_copy_mo_files_alpha_beta"]], "test_copy_mo_files_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_copy_mo_files_error"]], "test_copy_mo_files_mo() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_copy_mo_files_mo"]], "test_create() (turbomoleio.input.tests.test_define.testexceptions method)": [[6, "turbomoleio.input.tests.test_define.TestExceptions.test_create"]], "test_define_basis_sets() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_define_basis_sets"]], "test_define_core_potentials() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_define_core_potentials"]], "test_define_symmetry() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_define_symmetry"]], "test_define_symmetry_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_define_symmetry_error"]], "test_determine_symmetry() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_determine_symmetry"]], "test_determine_symmetry_eps() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_determine_symmetry_eps"]], "test_dump_command_file() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_dump_command_file"]], "test_excited_state_menu_error_not_activated() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_error_not_activated"]], "test_excited_state_menu_frequency() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_frequency"]], "test_excited_state_menu_irrep() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_irrep"]], "test_excited_state_menu_irrep_wrong_sym() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_irrep_wrong_sym"]], "test_excited_state_menu_polly() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_polly"]], "test_excited_state_menu_rpas() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_rpas"]], "test_excited_state_menu_urpa() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_urpa"]], "test_excited_state_menu_urpa_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_urpa_error"]], "test_excited_state_menu_wrong_ex_method() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_wrong_ex_method"]], "test_excited_state_menu_wrong_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_wrong_menu"]], "test_existing_coordinates() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates"]], "test_existing_coordinates_cartesian() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates_cartesian"]], "test_existing_coordinates_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates_error"]], "test_existing_coordinates_no_update() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates_no_update"]], "test_existing_coordinates_unsupported() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates_unsupported"]], "test_expect() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_expect"]], "test_expect_raise_eof() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_expect_raise_eof"]], "test_expect_raise_timeout() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_expect_raise_timeout"]], "test_extended_hueckel_theory_menu_charge() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_charge"]], "test_extended_hueckel_theory_menu_default() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_default"]], "test_extended_hueckel_theory_menu_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_error"]], "test_extended_hueckel_theory_menu_nocharge() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_nocharge"]], "test_extended_hueckel_theory_menu_unpaired() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_unpaired"]], "test_general_menu_ccsdt() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_general_menu_ccsdt"]], "test_general_menu_dft() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_general_menu_dft"]], "test_general_menu_hf() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_general_menu_hf"]], "test_general_menu_wrong_method() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_general_menu_wrong_method"]], "test_generate_internal_coordinates() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_generate_internal_coordinates"]], "test_generate_internal_coordinates_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_generate_internal_coordinates_error"]], "test_geometry_menu_copymo() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_copymo"]], "test_geometry_menu_incompatibility_1() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_incompatibility_1"]], "test_geometry_menu_incompatibility_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_incompatibility_2"]], "test_geometry_menu_new_coords_1() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_new_coords_1"]], "test_geometry_menu_new_coords_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_new_coords_2"]], "test_geometry_menu_new_coords_3() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_new_coords_3"]], "test_geometry_menu_new_coords_4() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_new_coords_4"]], "test_geometry_menu_no_new_coords() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_no_new_coords"]], "test_get_bin_path() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_get_bin_path"]], "test_get_define_template() (in module turbomoleio.input.tests.test_utils)": [[6, "turbomoleio.input.tests.test_utils.test_get_define_template"]], "test_go_to_general_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_go_to_general_menu"]], "test_init() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_init"]], "test_initialize_control_1() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_initialize_control_1"]], "test_initialize_control_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_initialize_control_2"]], "test_initialize_control_incompatibility() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_initialize_control_incompatibility"]], "test_is_alive() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_is_alive"]], "test_postprocess() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_postprocess"]], "test_quit_general_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_quit_general_menu"]], "test_run_full_1() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_full_1"]], "test_run_full_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_full_2"]], "test_run_generate_mo_files() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_generate_mo_files"]], "test_run_generate_mo_files_sym() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_generate_mo_files_sym"]], "test_run_update_internal_coords() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_update_internal_coords"]], "test_run_update_internal_coords_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_update_internal_coords_error"]], "test_sendline() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_sendline"]], "test_set_basis() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_basis"]], "test_set_basis_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_basis_error"]], "test_set_basis_error_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_basis_error_2"]], "test_set_basis_error_3() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_basis_error_3"]], "test_set_dft_options_no_dft() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_dft_options_no_dft"]], "test_set_dft_options_use_dft() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_dft_options_use_dft"]], "test_set_dft_options_wrong_xc() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_dft_options_wrong_xc"]], "test_set_ecp_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ecp_error"]], "test_set_ecp_error_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ecp_error_2"]], "test_set_ecp_error_3() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ecp_error_3"]], "test_set_metric() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_metric"]], "test_set_mo_from_control_file() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mo_from_control_file"]], "test_set_mo_from_control_file_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mo_from_control_file_2"]], "test_set_mo_from_control_file_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mo_from_control_file_error"]], "test_set_mo_from_control_file_longpath() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mo_from_control_file_longpath"]], "test_set_mp2_options() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options"]], "test_set_mp2_options_f12() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options_f12"]], "test_set_mp2_options_geoopt() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options_geoopt"]], "test_set_mp2_options_mp2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options_mp2"]], "test_set_mp2_options_mp2_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options_mp2_error"]], "test_set_ri_state() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ri_state"]], "test_set_ri_state_marij() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ri_state_marij"]], "test_set_scf_options() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_scf_options"]], "test_skip_atomic_attribute_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_skip_atomic_attribute_menu"]], "test_skip_atomic_attribute_menu_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_skip_atomic_attribute_menu_error"]], "test_skip_atomic_attribute_menu_internal() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_skip_atomic_attribute_menu_internal"]], "test_switch_to_atomic_attribute_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_atomic_attribute_menu"]], "test_switch_to_atomic_attribute_menu_internal() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_atomic_attribute_menu_internal"]], "test_switch_to_atomic_attribute_menu_internal_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_atomic_attribute_menu_internal_error"]], "test_switch_to_molecular_orbital_definition_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_molecular_orbital_definition_menu"]], "test_switch_to_scf_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_scf_menu"]], "test_validate_parameters() (in module turbomoleio.input.tests.test_utils)": [[6, "turbomoleio.input.tests.test_utils.test_validate_parameters"]], "turbomoleio.input.tests": [[6, "module-turbomoleio.input.tests"]], "turbomoleio.input.tests.test_define": [[6, "module-turbomoleio.input.tests.test_define"]], "turbomoleio.input.tests.test_utils": [[6, "module-turbomoleio.input.tests.test_utils"]], "aoforcenumericalintegrationdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.AoforceNumericalIntegrationData"]], "aoforceoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.AoforceOutput"]], "aoforcerotationaldata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.AoforceRotationalData"]], "aoforcevibrationaldata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.AoforceVibrationalData"]], "basedata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.BaseData"]], "basisdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.BasisData"]], "cosmodata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.CosmoData"]], "dftdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.DFTData"]], "dispersioncorrectiondata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.DispersionCorrectionData"]], "egradoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.EgradOutput"]], "eigeroutput (class in turbomoleio.output.states)": [[7, "turbomoleio.output.states.EigerOutput"]], "eigerrunner (class in turbomoleio.output.states)": [[7, "turbomoleio.output.states.EigerRunner"]], "electrostaticmomentsdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.ElectrostaticMomentsData"]], "escfdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.EscfData"]], "escfiterationdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.EscfIterationData"]], "escfonlyoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.EscfOnlyOutput"]], "escfoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.EscfOutput"]], "functionaldata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.FunctionalData"]], "geometrydata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.GeometryData"]], "gradoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.GradOutput"]], "integraldata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.IntegralData"]], "jobexoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.JobexOutput"]], "mp2data (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.MP2Data"]], "mp2output (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.MP2Output"]], "mp2results (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.MP2Results"]], "parser (class in turbomoleio.output.parser)": [[7, "turbomoleio.output.parser.Parser"]], "periodicitydata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.PeriodicityData"]], "relaxconvergencedata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RelaxConvergenceData"]], "relaxdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RelaxData"]], "relaxgradientsdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RelaxGradientsData"]], "relaxoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.RelaxOutput"]], "ridata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RiData"]], "ricc2output (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.Ricc2Output"]], "rundata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RunData"]], "scfdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.ScfData"]], "scfenergiesdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.ScfEnergiesData"]], "scfiterationdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.ScfIterationData"]], "scfoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.ScfOutput"]], "singleexcitation (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.SingleExcitation"]], "smearingdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.SmearingData"]], "spindata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.SpinData"]], "state (class in turbomoleio.output.states)": [[7, "turbomoleio.output.states.State"]], "states (class in turbomoleio.output.states)": [[7, "turbomoleio.output.states.States"]], "statptdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.StatptData"]], "statptoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.StatptOutput"]], "symmetrydata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.SymmetryData"]], "turbomoledata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.TurbomoleData"]], "all_done() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.all_done"]], "aoforce_analysis() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.aoforce_analysis"]], "aoforce_numerical_integration() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.aoforce_numerical_integration"]], "as_dict() (turbomoleio.output.states.state method)": [[7, "turbomoleio.output.states.State.as_dict"]], "as_dict() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.as_dict"]], "basis() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.basis"]], "centers() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.centers"]], "compare_states() (turbomoleio.output.states.eigeroutput method)": [[7, "turbomoleio.output.states.EigerOutput.compare_states"]], "convert_float() (in module turbomoleio.output.parser)": [[7, "turbomoleio.output.parser.convert_float"]], "convert_int() (in module turbomoleio.output.parser)": [[7, "turbomoleio.output.parser.convert_int"]], "convert_time_string() (in module turbomoleio.output.parser)": [[7, "turbomoleio.output.parser.convert_time_string"]], "coordinates() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.coordinates"]], "cosmo_header() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.cosmo_header"]], "cosmo_results() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.cosmo_results"]], "density_functional_data() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.density_functional_data"]], "dftd() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.dftd"]], "egrad_excited_state() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.egrad_excited_state"]], "eigenvalues (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.eigenvalues"]], "electrostatic_moments() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.electrostatic_moments"]], "escf_excitations() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.escf_excitations"]], "escf_gs_total_en() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.escf_gs_total_en"]], "escf_iterations() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.escf_iterations"]], "fermi() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.fermi"]], "filter_states() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.filter_states"]], "from_dict() (turbomoleio.output.states.state class method)": [[7, "turbomoleio.output.states.State.from_dict"]], "from_file() (turbomoleio.output.data.basedata class method)": [[7, "turbomoleio.output.data.BaseData.from_file"]], "from_file() (turbomoleio.output.parser.parser class method)": [[7, "turbomoleio.output.parser.Parser.from_file"]], "from_file() (turbomoleio.output.states.eigeroutput class method)": [[7, "turbomoleio.output.states.EigerOutput.from_file"]], "from_file() (turbomoleio.output.states.states class method)": [[7, "turbomoleio.output.states.States.from_file"]], "from_parser() (turbomoleio.output.data.aoforcenumericalintegrationdata class method)": [[7, "turbomoleio.output.data.AoforceNumericalIntegrationData.from_parser"]], "from_parser() (turbomoleio.output.data.aoforcerotationaldata class method)": [[7, "turbomoleio.output.data.AoforceRotationalData.from_parser"]], "from_parser() (turbomoleio.output.data.aoforcevibrationaldata class method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.from_parser"]], "from_parser() (turbomoleio.output.data.basedata class method)": [[7, "turbomoleio.output.data.BaseData.from_parser"]], "from_parser() (turbomoleio.output.data.basisdata class method)": [[7, "turbomoleio.output.data.BasisData.from_parser"]], "from_parser() (turbomoleio.output.data.cosmodata class method)": [[7, "turbomoleio.output.data.CosmoData.from_parser"]], "from_parser() (turbomoleio.output.data.dftdata class method)": [[7, "turbomoleio.output.data.DFTData.from_parser"]], "from_parser() (turbomoleio.output.data.dispersioncorrectiondata class method)": [[7, "turbomoleio.output.data.DispersionCorrectionData.from_parser"]], "from_parser() (turbomoleio.output.data.electrostaticmomentsdata class method)": [[7, "turbomoleio.output.data.ElectrostaticMomentsData.from_parser"]], "from_parser() (turbomoleio.output.data.escfdata class method)": [[7, "turbomoleio.output.data.EscfData.from_parser"]], "from_parser() (turbomoleio.output.data.escfiterationdata class method)": [[7, "turbomoleio.output.data.EscfIterationData.from_parser"]], "from_parser() (turbomoleio.output.data.functionaldata class method)": [[7, "turbomoleio.output.data.FunctionalData.from_parser"]], "from_parser() (turbomoleio.output.data.geometrydata class method)": [[7, "turbomoleio.output.data.GeometryData.from_parser"]], "from_parser() (turbomoleio.output.data.integraldata class method)": [[7, "turbomoleio.output.data.IntegralData.from_parser"]], "from_parser() (turbomoleio.output.data.mp2data class method)": [[7, "turbomoleio.output.data.MP2Data.from_parser"]], "from_parser() (turbomoleio.output.data.mp2results class method)": [[7, "turbomoleio.output.data.MP2Results.from_parser"]], "from_parser() (turbomoleio.output.data.periodicitydata class method)": [[7, "turbomoleio.output.data.PeriodicityData.from_parser"]], "from_parser() (turbomoleio.output.data.relaxconvergencedata class method)": [[7, "turbomoleio.output.data.RelaxConvergenceData.from_parser"]], "from_parser() (turbomoleio.output.data.relaxdata class method)": [[7, "turbomoleio.output.data.RelaxData.from_parser"]], "from_parser() (turbomoleio.output.data.relaxgradientsdata class method)": [[7, "turbomoleio.output.data.RelaxGradientsData.from_parser"]], "from_parser() (turbomoleio.output.data.ridata class method)": [[7, "turbomoleio.output.data.RiData.from_parser"]], "from_parser() (turbomoleio.output.data.rundata class method)": [[7, "turbomoleio.output.data.RunData.from_parser"]], "from_parser() (turbomoleio.output.data.scfdata class method)": [[7, "turbomoleio.output.data.ScfData.from_parser"]], "from_parser() (turbomoleio.output.data.scfenergiesdata class method)": [[7, "turbomoleio.output.data.ScfEnergiesData.from_parser"]], "from_parser() (turbomoleio.output.data.scfiterationdata class method)": [[7, "turbomoleio.output.data.ScfIterationData.from_parser"]], "from_parser() (turbomoleio.output.data.smearingdata class method)": [[7, "turbomoleio.output.data.SmearingData.from_parser"]], "from_parser() (turbomoleio.output.data.spindata class method)": [[7, "turbomoleio.output.data.SpinData.from_parser"]], "from_parser() (turbomoleio.output.data.statptdata class method)": [[7, "turbomoleio.output.data.StatptData.from_parser"]], "from_parser() (turbomoleio.output.data.symmetrydata class method)": [[7, "turbomoleio.output.data.SymmetryData.from_parser"]], "from_parser() (turbomoleio.output.data.turbomoledata class method)": [[7, "turbomoleio.output.data.TurbomoleData.from_parser"]], "from_parser() (turbomoleio.output.files.aoforceoutput class method)": [[7, "turbomoleio.output.files.AoforceOutput.from_parser"]], "from_parser() (turbomoleio.output.files.egradoutput class method)": [[7, "turbomoleio.output.files.EgradOutput.from_parser"]], "from_parser() (turbomoleio.output.files.escfonlyoutput class method)": [[7, "turbomoleio.output.files.EscfOnlyOutput.from_parser"]], "from_parser() (turbomoleio.output.files.escfoutput class method)": [[7, "turbomoleio.output.files.EscfOutput.from_parser"]], "from_parser() (turbomoleio.output.files.gradoutput class method)": [[7, "turbomoleio.output.files.GradOutput.from_parser"]], "from_parser() (turbomoleio.output.files.jobexoutput class method)": [[7, "turbomoleio.output.files.JobexOutput.from_parser"]], "from_parser() (turbomoleio.output.files.mp2output class method)": [[7, "turbomoleio.output.files.MP2Output.from_parser"]], "from_parser() (turbomoleio.output.files.relaxoutput class method)": [[7, "turbomoleio.output.files.RelaxOutput.from_parser"]], "from_parser() (turbomoleio.output.files.ricc2output class method)": [[7, "turbomoleio.output.files.Ricc2Output.from_parser"]], "from_parser() (turbomoleio.output.files.scfoutput class method)": [[7, "turbomoleio.output.files.ScfOutput.from_parser"]], "from_parser() (turbomoleio.output.files.statptoutput class method)": [[7, "turbomoleio.output.files.StatptOutput.from_parser"]], "from_string() (turbomoleio.output.data.basedata class method)": [[7, "turbomoleio.output.data.BaseData.from_string"]], "from_string() (turbomoleio.output.states.eigeroutput class method)": [[7, "turbomoleio.output.states.EigerOutput.from_string"]], "gap (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.gap"]], "generate_lowest_filled_states() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.generate_lowest_filled_states"]], "get_eiger_output() (turbomoleio.output.states.eigerrunner method)": [[7, "turbomoleio.output.states.EigerRunner.get_eiger_output"]], "get_freqs_df() (turbomoleio.output.data.aoforcevibrationaldata method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.get_freqs_df"]], "get_mos_energies() (in module turbomoleio.output.states)": [[7, "turbomoleio.output.states.get_mos_energies"]], "get_shells() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.get_shells"]], "get_split_jobex_parsers() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.get_split_jobex_parsers"]], "get_value() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.get_value"]], "gradient() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.gradient"]], "grep_line() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.grep_line"]], "has_fractional_occ (turbomoleio.output.states.state property)": [[7, "turbomoleio.output.states.State.has_fractional_occ"]], "has_fractional_occ (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.has_fractional_occ"]], "has_hole (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.has_hole"]], "header() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.header"]], "homo (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.homo"]], "homo_index (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.homo_index"]], "insert() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.insert"]], "integral() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.integral"]], "irrep_indices (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.irrep_indices"]], "irreps (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.irreps"]], "is_uhf (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.is_uhf"]], "is_uhf() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.is_uhf"]], "lumo (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.lumo"]], "lumo_index (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.lumo_index"]], "max_occupation (turbomoleio.output.states.state property)": [[7, "turbomoleio.output.states.State.max_occupation"]], "mp2_data() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.mp2_data"]], "mp2_results() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.mp2_results"]], "n_negative_freqs() (turbomoleio.output.data.aoforcevibrationaldata method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.n_negative_freqs"]], "n_positive_freqs() (turbomoleio.output.data.aoforcevibrationaldata method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.n_positive_freqs"]], "n_states (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.n_states"]], "n_zero_freqs() (turbomoleio.output.data.aoforcevibrationaldata method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.n_zero_freqs"]], "occupations (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.occupations"]], "periodicity_data() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.periodicity_data"]], "plot_energies() (turbomoleio.output.data.scfiterationdata method)": [[7, "turbomoleio.output.data.ScfIterationData.plot_energies"]], "pre_escf_run() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.pre_escf_run"]], "pre_scf_run() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.pre_scf_run"]], "rdgrad_memory() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.rdgrad_memory"]], "relax_conv_info() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.relax_conv_info"]], "relax_gradient_values() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.relax_gradient_values"]], "relax_info() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.relax_info"]], "rij_info() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.rij_info"]], "riper_scf_energies() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.riper_scf_energies"]], "run() (turbomoleio.output.states.eigerrunner method)": [[7, "turbomoleio.output.states.EigerRunner.run"]], "s2() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.s2"]], "scf_energies() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.scf_energies"]], "scf_iterations() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.scf_iterations"]], "spins (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.spins"]], "statpt_info() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.statpt_info"]], "string (turbomoleio.output.parser.parser property)": [[7, "turbomoleio.output.parser.Parser.string"]], "symmetry() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.symmetry"]], "timings() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.timings"]], "to_file() (turbomoleio.output.states.eigerrunner method)": [[7, "turbomoleio.output.states.EigerRunner.to_file"]], "total_electrons (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.total_electrons"]], "turbomoleio.output": [[7, "module-turbomoleio.output"]], "turbomoleio.output.data": [[7, "module-turbomoleio.output.data"]], "turbomoleio.output.files": [[7, "module-turbomoleio.output.files"]], "turbomoleio.output.parser": [[7, "module-turbomoleio.output.parser"]], "turbomoleio.output.states": [[7, "module-turbomoleio.output.states"]], "testfiles (class in turbomoleio.output.tests.test_files)": [[8, "turbomoleio.output.tests.test_files.TestFiles"]], "testfunctions (class in turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.TestFunctions"]], "testparser (class in turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.TestParser"]], "cls_dict_path() (in module turbomoleio.output.tests.test_files)": [[8, "turbomoleio.output.tests.test_files.cls_dict_path"]], "generate_files() (in module turbomoleio.output.tests.test_files)": [[8, "turbomoleio.output.tests.test_files.generate_files"]], "generate_files() (in module turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.generate_files"]], "method() (in module turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.method"]], "parser_and_dict() (in module turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.parser_and_dict"]], "test_aoforcevibrationaldata() (in module turbomoleio.output.tests.test_data)": [[8, "turbomoleio.output.tests.test_data.test_AoforceVibrationalData"]], "test_scfiterationdata() (in module turbomoleio.output.tests.test_data)": [[8, "turbomoleio.output.tests.test_data.test_ScfIterationData"]], "test_closed() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_closed"]], "test_convert_float() (turbomoleio.output.tests.test_parser.testfunctions method)": [[8, "turbomoleio.output.tests.test_parser.TestFunctions.test_convert_float"]], "test_convert_int() (turbomoleio.output.tests.test_parser.testfunctions method)": [[8, "turbomoleio.output.tests.test_parser.TestFunctions.test_convert_int"]], "test_convert_time_string() (turbomoleio.output.tests.test_parser.testfunctions method)": [[8, "turbomoleio.output.tests.test_parser.TestFunctions.test_convert_time_string"]], "test_eiger_runner() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_eiger_runner"]], "test_error_homo() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_error_homo"]], "test_fail_all_done_check() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_fail_all_done_check"]], "test_get_split_jobex_parsers() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_get_split_jobex_parsers"]], "test_get_value() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_get_value"]], "test_grep_line() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_grep_line"]], "test_hole() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_hole"]], "test_no_empty_states() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_no_empty_states"]], "test_parsing_failures() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_parsing_failures"]], "test_properties() (turbomoleio.output.tests.test_files.testfiles method)": [[8, "turbomoleio.output.tests.test_files.TestFiles.test_properties"]], "test_properties() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_properties"]], "test_state() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_state"]], "test_str() (in module turbomoleio.output.tests.test_data)": [[8, "turbomoleio.output.tests.test_data.test_str"]], "test_uhf() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_uhf"]], "turbomoleio.output.tests": [[8, "module-turbomoleio.output.tests"]], "turbomoleio.output.tests.test_data": [[8, "module-turbomoleio.output.tests.test_data"]], "turbomoleio.output.tests.test_files": [[8, "module-turbomoleio.output.tests.test_files"]], "turbomoleio.output.tests.test_parser": [[8, "module-turbomoleio.output.tests.test_parser"]], "turbomoleio.output.tests.test_states": [[8, "module-turbomoleio.output.tests.test_states"]], "itestconfig (class in turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.ItestConfig"]], "itesterror": [[9, "turbomoleio.testfiles.utils.ItestError"]], "assert_msonable() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.assert_MSONable"]], "assert_almost_equal() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.assert_almost_equal"]], "compare_differences() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.compare_differences"]], "define_timeout (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.define_timeout"]], "delete_tmp_dir (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.delete_tmp_dir"]], "dryrun (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.dryrun"]], "dryrun_fpath (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.dryrun_fpath"]], "dryrun_use_ref_control (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.dryrun_use_ref_control"]], "generate_control_for_test() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.generate_control_for_test"]], "generate_ref (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.generate_ref"]], "generate_reference_out_parser_files() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.generate_reference_out_parser_files"]], "generate_reference_output() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.generate_reference_output"]], "get_control_filepath() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.get_control_filepath"]], "get_control_integration() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.get_control_integration"]], "get_sp() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.get_sp"]], "get_tfp() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.get_tfp"]], "gisnan() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.gisnan"]], "has_matplotlib() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.has_matplotlib"]], "run_itest() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.run_itest"]], "temp_dir() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.temp_dir"]], "tol (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.tol"]], "touch_file() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.touch_file"]], "turbomoleio.testfiles": [[9, "module-turbomoleio.testfiles"]], "turbomoleio.testfiles.utils": [[9, "module-turbomoleio.testfiles.utils"]]}}) \ No newline at end of file diff --git a/docs_rst/index.rst b/docs_rst/index.rst index 85a6ef5..714e8d9 100644 --- a/docs_rst/index.rst +++ b/docs_rst/index.rst @@ -27,14 +27,15 @@ turbomoleio turbomoleio is a python library containing a set of tools for the generation of inputs and parsing of outputs for `TURBOMOLE `_, based on the open-source `pymatgen `_ library. turbomoleio is compatible with python version 3.8 and higher. The current version of turbomoleio is -compatible with TURBOMOLE version 7.5. Care is taken to provide backward compatibility for parsing of output +compatible with TURBOMOLE version 7.6. Care is taken to provide backward compatibility for parsing of output files generated with versions of TURBOMOLE down to 7.3. Full compatibility (i.e. input generation using define) -is only tested for TURBOMOLE version 7.5. The following table summarizes the compatibility (full, including input +is only tested for TURBOMOLE version 7.6. The following table summarizes the compatibility (full, including input generation using define) between TURBOMOLE and turbomoleio versions: ======================= ======================= TURBOMOLE version(s) turbomoleio version(s) ======================= ======================= +7.6 series 1.4.x series 7.5 series 1.3.x series 7.4 series 1.2.x series 7.3 series 1.0.x and 1.1.x series diff --git a/pyproject.toml b/pyproject.toml index 94e2e45..96b6f4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "turbomoleio" -version = "1.3.1" +version = "1.4.0" description = """\ Turbomoleio is a python package containing a set of tools \ for the generation of inputs and parsing of outputs for \ diff --git a/turbomoleio/__version__.py b/turbomoleio/__version__.py index 466bb7f..ae5e5f4 100644 --- a/turbomoleio/__version__.py +++ b/turbomoleio/__version__.py @@ -35,4 +35,4 @@ open-source `pymatgen `_ library. Turbomoleio is compatible with python version 3.8+. Full documentation can be found on ``_. """ -__version__ = "1.3.1" +__version__ = "1.4.0" diff --git a/turbomoleio/output/parser.py b/turbomoleio/output/parser.py index d10d5a5..0307971 100644 --- a/turbomoleio/output/parser.py +++ b/turbomoleio/output/parser.py @@ -409,12 +409,15 @@ def header(self): # In this case turbomole version and build will be set to None. # For example it may be: # escf (node001) : TURBOMOLE rev. compiled 1 Jul 2018 at 20:38:15 - r_version = r"V([\d\.]+\d)\s+.*" + # + # Note: TURBOMOLE 7.6 uses the notation 7-6. Catch it and convert to 7.6 + r_version = r"V([\d\.-]+\d)\s+.*" r_build = r"V[\d\.]+\d\s+\((.*)\)" match_version = re.search(r_version, match.group(3).strip()) match_build = re.search(r_build, match.group(3).strip()) if match_version: tm_version = match_version.group(1).strip() + tm_version = tm_version.replace("-", ".") else: tm_version = None if match_build: diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/aoforce.log b/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/aoforce.log new file mode 100644 index 0000000..97ded4a --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/aoforce.log @@ -0,0 +1,844 @@ + + force (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:18:05.960 + + + + T U R B O M O L E + + a o f o r c e - program + + using direct algorithms for + + SCF level calculations of + * harmonic force constants + * hyperpolarizabilities + * IR and RAMAN intensities + * VCD intensities + + DFT level calculations of + * harmonic force constants + * IR intensities + + Stephan Boecker, Peter Deglmann, Filipp Furche and Marco Haeser + Quantum Chemistry Group + Universitaet Karlsruhe + Germany + + + + + + References : + + RI-J implementation: + Peter Deglmann, Klaus May, Filipp Furche, Reinhart Ahlrichs + Chem. Phys. Lett. 384:103 (2004) + + Efficiency, technical details: + Peter Deglmann, Filipp Furche, Reinhart Ahlrichs + Chem. Phys. Lett. 362:511 (2002) + + Search of lowest eigenvalues by iterative diagonalization: + Peter Deglmann, Filipp Furche + J. Chem. Phys. 117:9535 (2002) + + Vibrational circular dichroism implementation: + Kevin Reiter, Michael Kuehn, Florian Weigend + J. Chem. Phys. 146:054102 (2017) + + + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.05814498 -3.50738391 0.00000000 o 8.000 0 + 2.43488579 0.35436813 0.00000000 c 6.000 0 + -2.48030013 0.26702469 0.00000000 c 6.000 0 + -0.00509977 -1.20231423 0.00000000 c 6.000 0 + 2.11408643 2.42830913 0.00000000 h 1.000 0 + -4.10640229 -1.05476626 0.00000000 h 1.000 0 + 3.57887083 -0.16668276 1.68562205 h 1.000 0 + 3.57887083 -0.16668276 -1.68562205 h 1.000 0 + -2.58652834 1.52406399 1.68701865 h 1.000 0 + -2.58652834 1.52406399 -1.68701865 h 1.000 0 + + center of nuclear mass : 0.00543831 -1.01535818 0.00000000 + center of nuclear charge: 0.00482639 -0.85800920 0.00000000 + + ************************************************************************* + dscf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + c 3 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 6 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 10 120 68 + --------------------------------------------------------------------------- + + total number of primitive shells : 28 + total number of contracted shells : 36 + total number of cartesian basis functions : 72 + total number of SCF-basis functions : 68 + + + symmetry group of the molecule : cs + + the group has the following generators : + c1(z) + mirror plane sigma(xy) + + 2 symmetry operations found + + there are 2 real representations : a' a" + + maximum number of shells which are related by symmetry : 2 + + + determining totally symmetric integral contributions + - equivalent to irreducible tensor elements - + which can be formed within each triple of representations : + + representation triple contributions + + a' a' a' 1 + a' a" a" 1 + a" a' a" 1 + a" a" a' 1 + + mo occupation : + irrep mo's occupied + a' 48 13 + a" 20 3 + + number of basis functions : 68 + number of occupied orbitals : 16 + + MOs are in ASCII format ! + + + reading orbital data $scfmo from file mos + orbital characterization : scfconv=8 + time elapsed for calculating density matrices : 0.001 sec + + number of non-frozen orbitals : 68 + number of non-frozen occupied orbitals : 16 + Blocking parameters + shells: + index start shell last shell start bf last bf #bf + 1 1 36 1 72 72 + size of I/O Block in Byte: 1244160 + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 8 + partition function : becke + partition sharpness : 3 + + + Derivatives of quadrature weights will be included + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 24534 + Ordering of quadrature gridpoints disabled. + + + + + OCCUPIED-OCCUPIED TENSOR SPACES : + + IRREP tensor space dimension number of roots + + a' 178 15 + a" 78 9 + + OCCUPIED-VIRTUAL TENSOR SPACES : + + IRREP tensor space dimension number of roots + + a' 506 15 + a" 326 9 + + + + + CONSTRUCTING integral bounds + + setting up bound for integral derivative estimation + + increment for numerical differentiation : 0.00050000 + + machine precision: 2.220446049250313E-016 + + integral neglect threshold : 0.10E-09 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + + + PREPARING NUMERICAL INTEGRATION + + Remaining core memory for DFT = 497 MB + + Memory needed per atom = 61 KiB + + i. e. 10 atoms per loop + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 32.00001039751107 + + + + + CONSTRUCTING first deriv. of -> Dip. deriv. + dipole integral derivatives will be neglected if + expon. factor <0.694444E-12 + ...terminated. cpu: 0.00 wall: 0.00 + + + + + CONSTRUCTING first deriv. of + -> RHS + second deriv. of -> Hessian + -> Hessian + nucl. rep. -> Hessian + integrals are neglected if expon. factor < 6.944444444444444E-014 + ...terminated. cpu: 0.04 wall: 0.06 + + + + + CONSTRUCTING second deriv. of 2e energy -> Hessian + treating Coulomb (and exchange) contribution + integrals will be neglected if total contribution < 6.944444444444444E-010 + ...terminated. cpu: 1.78 wall: 1.78 + treating exchange-correlation contribution + ...terminated. cpu: 2.06 wall: 2.06 + + + + + CONSTRUCTING S(i,j)xi + ...terminated. cpu: 0.00 wall: 0.02 + + + + + CONSTRUCTING *S(i,j)xi -> Dip. deriv. + ...terminated. cpu: 0.00 wall: 0.01 + + + + + CONSTRUCTING epsilon(i)*S(i,j)xi*S(i,j)chi -> Hessian + ...terminated. cpu: 0.00 wall: 0.01 + + + + + CONSTRUCTING G(a,i)[S(k,l)xi] -> RHS + G(i,j)[S(k,l)xi]*S(i,j)chi -> Hessian + + Maximum core memory set to 500 MB + This corresponds to 12082 vectors in CAO basis + ...terminated. cpu: 0.99 wall: 1.11 + + + + + CONSTRUCTING G(mu,nu)[D(kap,lam)]xi + + Maximum core memory set to 500 MB + Atoms treated simultaneously : 10 + max of dfo 6.84546970462346 + ...terminated. cpu: 1.58 wall: 1.62 + + + + + CONSTRUCTING F(a,i)xi -> RHS + F(i,j)xi*S(i,j)chi -> Hessian + + Maximum core memory set to 500 MB + This corresponds to 20911 vectors in CAO basis + ...terminated. cpu: 0.00 wall: 0.03 + + + + + CONSTRUCTING epsilon(i)*S(a,i)xi -> RHS + ...terminated. cpu: 0.00 wall: 0.03 + + + + + SOLVING CPHF equations + + Residuum convergence criterium : 1.000000000000000E-005 + + Maximum number of Davidson iterations set to 25 + + logfile cphf_a' will be constructed + + logfile cphf_a" will be constructed + Switching to small grid + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 6727 + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 32.00124448156419 + + + + + Nonorthonormal Krylov Space Iteration + + + total number of roots to be determined: 24 + + + maximum core memory set to 500 MB, + corresponding to 12082 vectors in CAO basis + + + maximum number of simultaneously treated vectors (including degeneracy): 24 + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 1 a' 0 6.477864201546545D-02 + a" 0 2.101071400167658D-02 + + 2 a' 0 3.108084414748305D-03 + a" 0 2.142588191202605D-03 + + 3 a' 0 1.493542249240670D-04 + a" 0 1.131083813417664D-04 + + 4 a' 15 3.352126044199397D-06 + a" 9 1.725170449884324D-06 + + + converged! + + Switching to fine grid + preparing numerical DFT integration .... + Overall gridpoints after grid construction = 24534 + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 32.00001039751096 + + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 5 a' 0 7.333438424219129D-05 + a" 1 3.947239674627336D-05 + + + NOTE: Residual norms are larger than 1.00D-05 due to mgrid option! + + ...terminated. cpu: 2.91 wall: 4.14 + + + + + CONSTRUCTING *U(a,i)xi -> Dip. deriv. + ...terminated. cpu: 0.00 wall: 0.03 + + + + + CONSTRUCTING RHS(a,i)xi*U(a,i)chi -> Hessian + ...terminated. cpu: 0.00 wall: 0.02 + + + + + + ----------------------- + permanent dipole moment + ----------------------- + + x y z + electronic part : -0.1320527169 28.4792736263 0.0000000000 + nuclear part : 0.1544443291 -27.4562944460 0.0000000000 + total : 0.0223916123 1.0229791802 0.0000000000 + + with reference to the point : 0.0000000 0.0000000 0.0000000 + (given in atomic units) + | dipole | : 2.6007961843 debye + + *** dipole moment & cartesian dipole gradients written onto + $dipole, $dipgrad, file= *** + + ----------------------------------- + rotational and vibrational analysis + ----------------------------------- + + + ============================================================== + ATOMIC WEIGHTS (average over the natural occurance of isotops) + ============================================================== + ('*' denotes special isotop !) + 1 o 15.99940 + 2 c 12.01115 + 3 c 12.01115 + 4 c 12.01115 + 5 h 1.00797 + 6 h 1.00797 + 7 h 1.00797 + 8 h 1.00797 + 9 h 1.00797 + 10 h 1.00797 + + ------------------------------------------------- + CARTESIAN FORCE CONSTANT MATRIX (hartree/bohr**2) + (translational & rotational space projected out) + ------------------------------------------------- + + ATOM 1 o 2 c + dx dy dz dx dy dz + 1 o dx 0.0913170 + dy -0.0209348 0.8146043 + dz 0.0000000 0.0000000 0.0233904 + 2 c dx 0.0091027-0.0236357 0.0000000 0.4557639 + dy -0.0377307-0.0460284 0.0000000-0.0514885 0.5439242 + dz 0.0000000 0.0000000 0.0144987 0.0000000 0.0000000 0.5005750 + 3 c dx 0.0065161 0.0227628 0.0000000-0.0228034 0.0086204 0.0000000 + dy 0.0411011-0.0456585 0.0000000-0.0111798 0.0098318 0.0000000 + dz 0.0000000 0.0000000 0.0266572 0.0000000 0.0000000 0.0162371 + 4 c dx -0.1041944 0.0192110 0.0000000-0.1574393-0.0358888 0.0000000 + dy 0.0166642-0.7194296 0.0000000-0.0231301-0.0924610 0.0000000 + dz 0.0000000 0.0000000-0.0667069 0.0000000 0.0000000-0.0778951 + 5 h dx -0.0066643-0.0063504 0.0000000-0.0539389 0.0441601 0.0000000 + dy -0.0059735-0.0023413 0.0000000 0.0401411-0.2957971 0.0000000 + dz 0.0000000 0.0000000 0.0030133 0.0000000 0.0000000-0.0449312 + 6 h dx 0.0055322 0.0002087 0.0000000-0.0029683 0.0038922 0.0000000 + dy -0.0015039 0.0013546 0.0000000 0.0021558-0.0013958 0.0000000 + dz 0.0000000 0.0000000-0.0013635 0.0000000 0.0000000 0.0031039 + 7 h dx 0.0026664 0.0016599 0.0027691-0.1135505 0.0348737-0.1174381 + dy -0.0000239-0.0006543 0.0023441 0.0339304-0.0595703 0.0521337 + dz 0.0000204-0.0006834 0.0012572-0.1137919 0.0526290-0.2061868 + 8 h dx 0.0026664 0.0016599-0.0027691-0.1135505 0.0348737 0.1174381 + dy -0.0000239-0.0006543-0.0023441 0.0339304-0.0595703-0.0521337 + dz -0.0000204 0.0006834 0.0012572 0.1137919-0.0526290-0.2061868 + 9 h dx -0.0034711 0.0027093-0.0036452-0.0003078-0.0006560-0.0029263 + dy 0.0042126-0.0005962 0.0023117-0.0003618 0.0005335 0.0018734 + dz 0.0002208 0.0013222-0.0010018 0.0002436-0.0005195 0.0003925 + 10 h dx -0.0034711 0.0027093 0.0036452-0.0003078-0.0006560 0.0029263 + dy 0.0042126-0.0005962-0.0023117-0.0003618 0.0005335-0.0018734 + dz -0.0002208-0.0013222-0.0010018-0.0002436 0.0005195 0.0003925 + + ATOM 3 c 4 c + dx dy dz dx dy dz + 3 c dx 0.4840557 + dy 0.0668786 0.5306872 + dz 0.0000000 0.0000000 0.4931068 + 4 c dx -0.1712406 0.0253591 0.0000000 0.4700503 + dy 0.0272593-0.0876386 0.0000000-0.0162746 0.9184458 + dz 0.0000000 0.0000000-0.0851780 0.0000000 0.0000000 0.2288788 + 5 h dx -0.0003227 0.0011608 0.0000000 0.0122792-0.0247092 0.0000000 + dy 0.0006916 0.0014233 0.0000000 0.0098541-0.0124002 0.0000000 + dz 0.0000000 0.0000000 0.0003461 0.0000000 0.0000000-0.0041548 + 6 h dx -0.2006438-0.1282381 0.0000000-0.0226061-0.0222595 0.0000000 + dy -0.1325824-0.1531023 0.0000000 0.0143058 0.0113448 0.0000000 + dz 0.0000000 0.0000000-0.0465157 0.0000000 0.0000000-0.0010137 + 7 h dx -0.0023107-0.0028874 0.0022828-0.0170527 0.0068515-0.0223042 + dy -0.0006888-0.0002884 0.0014497-0.0070282 0.0037375-0.0157083 + dz 0.0002719-0.0004800-0.0004569 0.0023968 0.0004542 0.0009674 + 8 h dx -0.0023107-0.0028874-0.0022828-0.0170527 0.0068515 0.0223042 + dy -0.0006888-0.0002884-0.0014497-0.0070282 0.0037375 0.0157083 + dz -0.0002719 0.0004800-0.0004569-0.0023968-0.0004542 0.0009674 + 9 h dx -0.0454700 0.0053466 0.0129010 0.0036281 0.0143734 0.0247054 + dy 0.0038736-0.1274830-0.1256112-0.0012551-0.0126681-0.0123443 + dz 0.0099487-0.1221293-0.2018698-0.0013370 0.0011797 0.0020674 + 10 h dx -0.0454700 0.0053466-0.0129010 0.0036281 0.0143734-0.0247054 + dy 0.0038736-0.1274830 0.1256112-0.0012551-0.0126681 0.0123443 + dz -0.0099487 0.1221293-0.2018698 0.0013370-0.0011797 0.0020674 + + ATOM 5 h 6 h + dx dy dz dx dy dz + 5 h dx 0.0539948 + dy -0.0440257 0.3166285 + dz 0.0000000 0.0000000 0.0420425 + 6 h dx 0.0006959 0.0003399 0.0000000 0.2158177 + dy 0.0000021 0.0001263 0.0000000 0.1393128 0.1583163 + dz 0.0000000 0.0000000-0.0000904 0.0000000 0.0000000 0.0426306 + 7 h dx -0.0023523-0.0001010-0.0020402-0.0009894 0.0003609 0.0005794 + dy 0.0149379-0.0040357 0.0236514-0.0001596 0.0002151 0.0000702 + dz 0.0023659-0.0010125 0.0019808 0.0000811 0.0000223-0.0001426 + 8 h dx -0.0023523-0.0001010 0.0020402-0.0009894 0.0003609-0.0005794 + dy 0.0149379-0.0040357-0.0236514-0.0001596 0.0002151-0.0000702 + dz -0.0023659 0.0010125 0.0019808-0.0000811-0.0000223-0.0001426 + 9 h dx -0.0006697-0.0004127 0.0002158 0.0030756-0.0112060-0.0191188 + dy -0.0000567 0.0002160 0.0000310 0.0035316-0.0085371-0.0134284 + dz 0.0001632 0.0003657-0.0000935-0.0003347 0.0023959 0.0017670 + 10 h dx -0.0006697-0.0004127-0.0002158 0.0030756-0.0112060 0.0191188 + dy -0.0000567 0.0002160-0.0000310 0.0035316-0.0085371 0.0134284 + dz -0.0001632-0.0003657-0.0000935 0.0003347-0.0023959 0.0017670 + + ATOM 7 h 8 h + dx dy dz dx dy dz + 7 h dx 0.1233029 + dy -0.0361874 0.0591537 + dz 0.1222934-0.0573306 0.2197784 + 8 h dx 0.0097529-0.0046210-0.0138153 0.1233029 + dy -0.0046210 0.0014931 0.0063772-0.0361874 0.0591537 + dz 0.0138153-0.0063772-0.0171354-0.1222934 0.0573306 0.2197784 + 9 h dx -0.0004521-0.0003514 0.0000589 0.0009855 0.0001920-0.0001187 + dy 0.0003572-0.0000387-0.0000725-0.0003063-0.0000120-0.0000964 + dz 0.0000229 0.0000223-0.0000054-0.0000198 0.0002554-0.0000567 + 10 h dx 0.0009855 0.0001920 0.0001187-0.0004521-0.0003514-0.0000589 + dy -0.0003063-0.0000120 0.0000964 0.0003572-0.0000387 0.0000725 + dz 0.0000198-0.0002554-0.0000567-0.0000229-0.0000223-0.0000054 + + ATOM 9 h 10 h + dx dy dz dx dy dz + 9 h dx 0.0429582 + dy -0.0083447 0.1373388 + dz -0.0104899 0.1322222 0.2165091 + 10 h dx -0.0002766-0.0016504 0.0015822 0.0429582 + dy -0.0016504 0.0112469-0.0151146-0.0083447 0.1373388 + dz -0.0015822 0.0151146-0.0177087 0.0104899-0.1322222 0.2165091 + + + *** projected hessian written onto $hessian (projected), file= *** + + dipole moment in principle axis system (a.u.) : + 0.0205132454 1.0230185698 0.0000000000 + norm : 1.02322421172582 + + rotational constants b for rotations around axis of inertia + and optical intensities for (1 <-- 0) transition + + b : 0.3345568942 0.2768703230 0.1607738674 (cm**(-1)) + b : 10029.7634 8300.3635 4819.8793 (MHz) + int. : 0.0004207932 1.0465669942 0.0000000000 (a.u.) + + x : 0.9999983143 0.0018361363 0.0000000000 + y : -0.0018361363 0.9999983143 0.0000000000 + z : 0.0000000000 0.0000000000 1.0000000000 + + *** normal modes written onto $vibrational normal modes, file= *** + + Keyword $vibrational reduced masses missing in file + + + *** vibrational spectroscopic data written onto$vibrational spectrum + file= *** + + --------------------------------------------------- + NORMAL MODES and VIBRATIONAL FREQUENCIES (cm**(-1)) + --------------------------------------------------- + + imaginary wave numbers indicate a negative curvature of the energy surface. + zero frequency modes have no physical meaning except being generators of + translations and rotations. each vibrational normal mode - given in terms of + cartesian displacement vectors of all atoms - has been normalized to unity. + to obtain mass-weigthed normal coordinates in a.u. divide the tabulated + modes by sqrt(reduced mass * 1822.88853). + band intensities or cross sections refer to independent non-degenerate normal + modes, that is, the intensities of degenerate modes have yet to be added. + dDIP/dQ is the normal mode derivative of the dipole moment. + + WARNING: values of IR intensities are questionable for saddle point structures + + + mode 1 2 3 4 5 6 + + frequency i113.75 0.00 0.00 0.00 0.00 0.00 + + symmetry a" + + IR YES - - - - - +|dDIP/dQ| (a.u.) 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 +intensity (km/mol) 0.00 0.00 0.00 0.00 0.00 0.00 +intensity ( % ) 0.00 0.00 0.00 0.00 0.00 0.00 + + RAMAN YES - - - - - + + 1 o x 0.00000 0.00267 0.35621 0.08763 -0.03439 0.11162 + y 0.00000 -0.00381 0.03777 -0.12501 0.20845 0.06509 + z 0.04920 -0.10381 -0.02338 0.17167 -0.08436 0.02308 + 2 c x 0.00000 0.00701 -0.01248 0.23021 0.10132 0.14993 + y -0.00000 -0.00648 0.26468 -0.21276 0.12492 0.04151 + z -0.00463 0.05039 0.11331 0.19089 0.21333 -0.33119 + 3 c x 0.00000 0.00691 -0.00414 0.22699 0.09825 0.14906 + y 0.00000 -0.00095 -0.20458 -0.03128 0.29765 0.09027 + z -0.04844 0.38141 -0.02079 0.00400 -0.05039 0.04812 + 4 c x 0.00000 0.00526 0.13614 0.17274 0.04661 0.13449 + y 0.00000 -0.00374 0.03173 -0.12267 0.21067 0.06571 + z 0.01476 0.09020 0.01828 0.12631 0.01499 -0.07520 + 5 h x 0.00000 0.00934 -0.21048 0.30679 0.17420 0.17050 + y -0.00000 -0.00612 0.23406 -0.20091 0.13619 0.04469 + z 0.49283 0.24310 0.14368 0.13995 0.28877 -0.39945 + 6 h x 0.00000 0.00543 0.12205 0.17819 0.05180 0.13595 + y -0.00000 0.00088 -0.35983 0.02876 0.35480 0.10639 + z -0.17600 0.38454 -0.08947 -0.03374 -0.19524 0.23143 + 7 h x 0.28911 0.12241 -0.00816 0.14633 -0.00610 0.27350 + y -0.39613 -0.14646 0.34219 -0.22360 0.00962 0.10557 + z -0.32814 -0.07120 0.13434 0.24447 0.25059 -0.39525 + 8 h x -0.28911 -0.10956 0.08269 0.27562 0.17212 0.01602 + y 0.39613 0.13092 0.40561 -0.28640 0.15982 -0.04523 + z -0.32814 -0.07120 0.13434 0.24447 0.25059 -0.39525 + 9 h x -0.07583 0.12441 -0.16961 0.20870 0.05325 0.29038 + y -0.08110 -0.13964 -0.24646 0.00407 0.22623 0.16678 + z 0.00756 0.49214 0.00000 -0.02349 -0.00000 0.00000 + 10 h x 0.07583 -0.10775 -0.07869 0.33810 0.23161 0.03269 + y 0.08110 0.13797 -0.18298 -0.05879 0.37655 0.01586 + z 0.00756 0.49214 0.00000 -0.02349 0.00000 0.00000 + +reduced mass(g/mol) 1.073 2.890 4.538 4.529 4.193 3.408 + + + mode 7 8 9 10 11 12 + + frequency 0.00 157.28 372.62 482.93 510.25 764.50 + + symmetry a" a' a" a' a' + + IR - YES YES YES YES YES +|dDIP/dQ| (a.u.) 0.0000 0.0006 0.0010 0.0002 0.0026 0.0011 +intensity (km/mol) 0.00 0.56 1.62 0.09 11.66 2.13 +intensity ( % ) 0.00 0.35 1.01 0.06 7.28 1.33 + + RAMAN - YES YES YES YES YES + + 1 o x -0.03882 0.00000 -0.00202 -0.00000 -0.30338 0.01637 + y 0.11693 -0.00000 -0.13173 -0.00000 -0.01027 -0.15249 + z 0.54065 -0.04194 0.00000 -0.10981 0.00000 -0.00000 + 2 c x -0.10279 -0.00000 -0.15353 -0.00000 0.12972 0.25588 + y 0.15630 0.00000 0.10217 0.00000 0.15827 0.09816 + z 0.00710 0.03831 -0.00000 -0.02475 0.00000 0.00000 + 3 c x -0.10135 0.00000 0.15130 0.00000 0.11330 -0.26482 + y 0.07488 -0.00000 0.09522 -0.00000 -0.15172 0.12899 + z 0.15000 0.00319 -0.00000 -0.00355 0.00000 -0.00000 + 4 c x -0.07700 0.00000 0.00089 0.00000 0.13112 -0.00110 + y 0.11588 -0.00000 -0.12991 -0.00000 0.00249 -0.13027 + z 0.26205 0.01891 -0.00000 0.27488 -0.00000 0.00000 + 5 h x -0.13715 -0.00000 -0.48067 -0.00000 -0.21290 0.02868 + y 0.15099 -0.00000 0.05041 0.00000 0.10527 0.06975 + z -0.23645 0.17736 0.00000 -0.27404 0.00000 -0.00000 + 6 h x -0.07945 0.00000 -0.08593 0.00000 0.34096 -0.42225 + y 0.04794 -0.00000 0.38771 -0.00000 -0.42998 0.31167 + z 0.35448 0.48883 -0.00000 -0.31850 0.00000 0.00000 + 7 h x -0.04880 0.05396 -0.07215 0.29513 0.21211 0.32881 + y 0.38022 -0.10868 0.29857 0.24012 0.37329 0.29587 + z 0.03967 -0.03246 0.00552 -0.15284 0.01161 0.01636 + 8 h x -0.13952 -0.05396 -0.07215 -0.29513 0.21211 0.32881 + y -0.02972 0.10868 0.29857 -0.24012 0.37329 0.29587 + z 0.03967 -0.03246 -0.00552 -0.15284 -0.01161 -0.01636 + 9 h x -0.07677 0.18565 0.37944 -0.39216 -0.09751 -0.20217 + y 0.27826 0.45313 0.12585 0.15376 -0.18332 0.14639 + z -0.00000 -0.32776 -0.00784 -0.14852 0.01018 -0.00576 + 10 h x -0.16757 -0.18565 0.37944 0.39216 -0.09751 -0.20217 + y -0.13202 -0.45313 0.12585 -0.15376 -0.18332 0.14639 + z 0.00000 -0.32776 0.00784 -0.14852 -0.01018 0.00576 + +reduced mass(g/mol) 7.394 1.055 2.180 2.027 3.434 3.328 + + + mode 13 14 15 16 17 18 + + frequency 847.27 883.74 1033.97 1070.10 1191.20 1325.01 + + symmetry a" a' a' a" a' a' + + IR YES YES YES YES YES YES +|dDIP/dQ| (a.u.) 0.0004 0.0025 0.0009 0.0022 0.0073 0.0028 +intensity (km/mol) 0.29 10.77 1.31 8.93 93.89 14.38 +intensity ( % ) 0.18 6.73 0.82 5.58 58.65 8.98 + + RAMAN YES YES YES YES YES YES + + 1 o x 0.00000 -0.02543 0.00231 0.00000 -0.05861 -0.00439 + y -0.00000 0.00344 0.10928 0.00000 0.00441 -0.00481 + z 0.00887 -0.00000 0.00000 -0.03972 0.00000 0.00000 + 2 c x 0.00000 0.04893 0.05685 0.00000 -0.09528 0.07082 + y 0.00000 0.13177 -0.13378 -0.00000 0.03471 0.03751 + z -0.09871 -0.00000 0.00000 -0.12919 -0.00000 -0.00000 + 3 c x -0.00000 0.00883 -0.04740 -0.00000 -0.10140 -0.09921 + y 0.00000 -0.13705 -0.11294 -0.00000 -0.05875 0.06613 + z 0.09053 0.00000 0.00000 -0.13327 -0.00000 -0.00000 + 4 c x 0.00000 -0.10674 -0.01233 -0.00000 0.35947 0.03222 + y -0.00000 -0.00362 0.04506 0.00000 0.01218 -0.00465 + z -0.00868 0.00000 -0.00000 0.23053 0.00000 -0.00000 + 5 h x 0.00000 0.56453 -0.52142 -0.00000 -0.05156 -0.29571 + y 0.00000 0.21566 -0.21973 -0.00000 0.02043 -0.02474 + z 0.25154 0.00000 -0.00000 0.30264 -0.00000 0.00000 + 6 h x -0.00000 -0.31827 -0.35028 -0.00000 -0.48655 0.18936 + y 0.00000 0.27153 0.26893 0.00000 0.41366 -0.28673 + z -0.22614 0.00000 -0.00000 0.29357 0.00000 0.00000 + 7 h x -0.40951 -0.03713 0.12207 -0.38597 -0.18980 -0.30023 + y -0.21673 -0.17876 0.30561 -0.13219 -0.35118 -0.18173 + z 0.12035 -0.03584 0.08598 0.10483 -0.05827 0.17634 + 8 h x 0.40951 -0.03713 0.12207 0.38597 -0.18980 -0.30023 + y 0.21673 -0.17876 0.30561 0.13219 -0.35118 -0.18173 + z 0.12035 0.03584 -0.08598 0.10483 0.05827 -0.17634 + 9 h x -0.38405 0.40768 0.31262 0.32467 -0.04587 0.36539 + y 0.21559 -0.03918 0.00395 -0.27049 0.16973 -0.21413 + z -0.10303 -0.04678 -0.06195 0.10253 -0.14986 0.22901 + 10 h x 0.38405 0.40768 0.31262 -0.32467 -0.04587 0.36539 + y -0.21559 -0.03918 0.00395 0.27049 0.16973 -0.21413 + z -0.10303 0.04678 0.06195 0.10253 0.14986 -0.22901 + +reduced mass(g/mol) 1.207 1.568 1.609 1.995 2.747 1.247 + + + mode 19 20 21 22 23 24 + + frequency 1326.94 1395.67 1411.52 1415.09 1417.77 1771.88 + + symmetry a' a' a" a' a" a' + + IR YES YES YES YES YES YES +|dDIP/dQ| (a.u.) 0.0063 0.0033 0.0010 0.0016 0.0032 0.0095 +intensity (km/mol) 71.48 18.88 1.68 4.30 18.37 160.09 +intensity ( % ) 44.65 11.79 1.05 2.69 11.48 100.00 + + RAMAN YES YES YES YES YES YES + + 1 o x -0.00779 -0.00225 0.00000 0.00840 -0.00000 0.01356 + y 0.00576 0.02567 0.00000 0.00642 -0.00000 -0.48840 + z 0.00000 0.00000 -0.00184 -0.00000 -0.00538 0.00000 + 2 c x -0.11716 0.00032 0.00000 0.02680 -0.00000 0.00400 + y -0.03627 0.01345 0.00000 0.06144 -0.00000 -0.04364 + z -0.00000 0.00000 0.03665 0.00000 0.03728 0.00000 + 3 c x -0.09425 0.05318 0.00000 0.00370 -0.00000 0.00794 + y 0.04279 0.02485 -0.00000 -0.01404 0.00000 -0.04548 + z -0.00000 -0.00000 -0.04916 0.00000 0.02593 -0.00000 + 4 c x 0.06430 -0.00440 -0.00000 -0.05267 0.00000 -0.02486 + y 0.00246 -0.01066 -0.00000 -0.00220 0.00000 0.74626 + z -0.00000 -0.00000 -0.00354 0.00000 0.03713 -0.00000 + 5 h x 0.31480 -0.12087 -0.00000 -0.53658 0.00000 -0.22150 + y 0.03143 -0.01070 -0.00000 -0.04001 0.00000 -0.07131 + z 0.00000 -0.00000 -0.41631 -0.00000 -0.58904 -0.00000 + 6 h x 0.12276 -0.25162 0.00000 0.07425 -0.00000 -0.15757 + y -0.21960 0.38711 -0.00000 -0.09481 0.00000 0.20068 + z 0.00000 0.00000 0.61037 -0.00000 -0.39737 0.00000 + 7 h x 0.40876 0.09384 -0.02964 0.27006 -0.09009 0.07178 + y 0.12013 -0.09757 -0.25889 -0.38888 -0.40060 0.02997 + z -0.29765 -0.09518 -0.03198 -0.29869 -0.03534 -0.03159 + 8 h x 0.40876 0.09384 0.02964 0.27006 0.09009 0.07178 + y 0.12013 -0.09757 0.25889 -0.38888 0.40060 0.02997 + z 0.29765 0.09518 -0.03198 0.29869 -0.03534 0.03159 + 9 h x 0.31078 -0.18232 -0.36575 0.02654 0.26176 0.08715 + y -0.12524 -0.45896 -0.14298 0.13597 0.08217 -0.13378 + z 0.14469 0.33551 0.04512 -0.10780 -0.02664 0.08768 + 10 h x 0.31078 -0.18232 0.36575 0.02654 -0.26176 0.08715 + y -0.12524 -0.45896 0.14298 0.13597 -0.08217 -0.13378 + z -0.14469 -0.33551 0.04512 0.10780 -0.02664 -0.08768 + +reduced mass(g/mol) 1.338 1.059 1.050 1.092 1.046 10.766 + + + mode 25 26 27 28 29 30 + + frequency 2935.92 2950.81 3011.16 3036.78 3053.95 3072.08 + + symmetry a' a' a" a" a' a' + + IR YES YES YES YES YES YES +|dDIP/dQ| (a.u.) 0.0010 0.0012 0.0017 0.0010 0.0026 0.0021 +intensity (km/mol) 1.72 2.54 5.02 1.91 12.26 7.71 +intensity ( % ) 1.07 1.59 3.14 1.20 7.66 4.81 + + RAMAN YES YES YES YES YES YES + + 1 o x -0.00020 0.00012 -0.00000 -0.00000 0.00033 0.00018 + y -0.00069 -0.00042 0.00000 -0.00000 -0.00036 0.00109 + z 0.00000 0.00000 0.00024 0.00025 0.00000 -0.00000 + 2 c x -0.00495 0.04679 -0.00000 0.00000 -0.04367 0.00303 + y -0.00297 0.01958 -0.00000 -0.00000 0.08379 -0.00518 + z 0.00000 0.00000 -0.00123 -0.09206 -0.00000 0.00000 + 3 c x -0.03180 -0.00371 -0.00000 0.00000 -0.00391 -0.05688 + y 0.04186 0.00491 -0.00000 0.00000 -0.00472 -0.07396 + z -0.00000 0.00000 0.09178 -0.00116 0.00000 -0.00000 + 4 c x 0.00191 -0.00149 0.00000 0.00000 -0.00183 -0.00014 + y 0.00044 -0.00064 -0.00000 0.00000 0.00073 -0.00276 + z -0.00000 0.00000 0.00054 -0.00087 -0.00000 0.00000 + 5 h x -0.01165 0.09064 -0.00000 -0.00000 0.13433 -0.00695 + y 0.06920 -0.52493 0.00000 0.00000 -0.82891 0.05536 + z -0.00000 0.00000 0.00043 -0.01210 -0.00000 0.00000 + 6 h x 0.30746 0.03743 0.00000 -0.00000 0.04990 0.70907 + y 0.25797 0.02953 0.00000 -0.00000 0.04004 0.57724 + z 0.00000 -0.00000 0.01295 -0.00007 0.00000 -0.00000 + 7 h x 0.03293 -0.31537 0.00389 0.38866 0.19923 -0.01273 + y -0.01690 0.15136 -0.00117 -0.17999 -0.08421 0.00553 + z 0.05137 -0.47757 0.00643 0.55873 0.30662 -0.01830 + 8 h x 0.03293 -0.31537 -0.00389 -0.38866 0.19923 -0.01273 + y -0.01690 0.15136 0.00117 0.17999 -0.08421 0.00553 + z -0.05137 0.47757 0.00643 0.55873 -0.30662 0.01830 + 9 h x 0.02841 0.00263 0.03485 -0.00119 0.00035 -0.01808 + y -0.37552 -0.04245 -0.42824 0.00461 0.00605 0.15752 + z -0.51939 -0.05854 -0.55771 0.00598 0.00808 0.22453 + 10 h x 0.02841 0.00263 -0.03485 0.00119 0.00035 -0.01808 + y -0.37552 -0.04245 0.42824 -0.00461 0.00605 0.15752 + z 0.51939 0.05854 -0.55771 0.00598 -0.00808 -0.22453 + +reduced mass(g/mol) 1.039 1.037 1.101 1.101 1.107 1.104 + + + ************************************************************** + * * + * zero point VIBRATIONAL energy : 0.0807347 Hartree * + * SCF-energy : -193.0049629 * + * SCF + E(vib0) : -192.9242282 * + * * + ************************************************************** + + + + + time elapsed for vibrational analysis 0.02 sec + + + ------------------------------------------------------------------------ + total cpu-time : 9.86 seconds + total wall-time : 12.30 seconds + ------------------------------------------------------------------------ + + **** force : all done **** + + + 2023-01-25 00:18:18.200 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/ref_output.json new file mode 100644 index 0000000..39566dd --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/ref_output.json @@ -0,0 +1,1971 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "AoforceOutput", + "@version": "1.3.0", + "numerical_integration": { + "@module": "turbomoleio.output.data", + "@class": "AoforceNumericalIntegrationData", + "@version": "1.3.0", + "core_memory_dft": 497, + "memory_per_atom": 61, + "atoms_per_loop": 10, + "construction_timings": [ + [ + " first deriv. of -> Dip. deriv.", + 0.0, + 0.0 + ], + [ + " first deriv. of \n -> RHS\n second deriv. of -> Hessian\n -> Hessian\n nucl. rep. -> Hessian", + 0.04, + 0.06 + ], + [ + " second deriv. of 2e energy -> Hessian\n treating Coulomb (and exchange) contribution", + 1.78, + 1.78 + ], + [ + " second deriv. of 2e energy -> Hessian\n treating exchange-correlation contribution", + 2.06, + 2.06 + ], + [ + "", + 0.0, + 0.02 + ], + [ + " *S(i,j)xi -> Dip. deriv.", + 0.0, + 0.01 + ], + [ + " epsilon(i)*S(i,j)xi*S(i,j)chi -> Hessian", + 0.0, + 0.01 + ], + [ + " G(a,i)[S(k,l)xi] -> RHS\n G(i,j)[S(k,l)xi]*S(i,j)chi -> Hessian", + 0.99, + 1.11 + ], + [ + " G(mu,nu)[D(kap,lam)]xi", + 1.58, + 1.62 + ], + [ + " F(a,i)xi -> RHS\n F(i,j)xi*S(i,j)chi -> Hessian", + 0.0, + 0.03 + ], + [ + " epsilon(i)*S(a,i)xi -> RHS", + 0.0, + 0.03 + ], + [ + " *U(a,i)xi -> Dip. deriv.", + 0.0, + 0.03 + ], + [ + " RHS(a,i)xi*U(a,i)chi -> Hessian", + 0.0, + 0.02 + ] + ] + }, + "rotational": { + "@module": "turbomoleio.output.data", + "@class": "AoforceRotationalData", + "@version": "1.3.0", + "b": [ + 0.3345568942, + 0.276870323, + 0.1607738674 + ], + "intensities": [ + 0.0004207932, + 1.0465669942, + 0.0 + ], + "m": [ + [ + 0.9999983143, + 0.0018361363, + 0.0 + ], + [ + -0.0018361363, + 0.9999983143, + 0.0 + ], + [ + 0.0, + 0.0, + 1.0 + ] + ], + "dipole_moment": [ + 0.0205132454, + 1.0230185698, + 0.0 + ] + }, + "vibrational": { + "@module": "turbomoleio.output.data", + "@class": "AoforceVibrationalData", + "@version": "1.3.0", + "frequencies": [ + -113.75, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 157.28, + 372.62, + 482.93, + 510.25, + 764.5, + 847.27, + 883.74, + 1033.97, + 1070.1, + 1191.2, + 1325.01, + 1326.94, + 1395.67, + 1411.52, + 1415.09, + 1417.77, + 1771.88, + 2935.92, + 2950.81, + 3011.16, + 3036.78, + 3053.95, + 3072.08 + ], + "symmetries": [ + "a\"", + null, + null, + null, + null, + null, + "a\"", + "a'", + "a\"", + "a'", + "a'", + null, + "a\"", + "a'", + "a'", + "a\"", + "a'", + "a'", + "a'", + "a'", + "a\"", + "a'", + "a\"", + "a'", + "a'", + "a'", + "a\"", + "a\"", + "a'", + "a'" + ], + "ir": [ + true, + null, + null, + null, + null, + null, + null, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true + ], + "dDIP_dQ": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0006, + 0.001, + 0.0002, + 0.0026, + 0.0011, + 0.0004, + 0.0025, + 0.0009, + 0.0022, + 0.0073, + 0.0028, + 0.0063, + 0.0033, + 0.001, + 0.0016, + 0.0032, + 0.0095, + 0.001, + 0.0012, + 0.0017, + 0.001, + 0.0026, + 0.0021 + ], + "intensities": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.56, + 1.62, + 0.09, + 11.66, + 2.13, + 0.29, + 10.77, + 1.31, + 8.93, + 93.89, + 14.38, + 71.48, + 18.88, + 1.68, + 4.3, + 18.37, + 160.09, + 1.72, + 2.54, + 5.02, + 1.91, + 12.26, + 7.71 + ], + "intensities_perc": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.35, + 1.01, + 0.06, + 7.28, + 1.33, + 0.18, + 6.73, + 0.82, + 5.58, + 58.65, + 8.98, + 44.65, + 11.79, + 1.05, + 2.69, + 11.48, + 100.0, + 1.07, + 1.59, + 3.14, + 1.2, + 7.66, + 4.81 + ], + "raman": [ + true, + null, + null, + null, + null, + null, + null, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true + ], + "eigenvectors": [ + [ + [ + 0.0, + 0.0, + 0.0492 + ], + [ + 0.0, + -0.0, + -0.00463 + ], + [ + 0.0, + 0.0, + -0.04844 + ], + [ + 0.0, + 0.0, + 0.01476 + ], + [ + 0.0, + -0.0, + 0.49283 + ], + [ + 0.0, + -0.0, + -0.176 + ], + [ + 0.28911, + -0.39613, + -0.32814 + ], + [ + -0.28911, + 0.39613, + -0.32814 + ], + [ + -0.07583, + -0.0811, + 0.00756 + ], + [ + 0.07583, + 0.0811, + 0.00756 + ] + ], + [ + [ + 0.00267, + -0.00381, + -0.10381 + ], + [ + 0.00701, + -0.00648, + 0.05039 + ], + [ + 0.00691, + -0.00095, + 0.38141 + ], + [ + 0.00526, + -0.00374, + 0.0902 + ], + [ + 0.00934, + -0.00612, + 0.2431 + ], + [ + 0.00543, + 0.00088, + 0.38454 + ], + [ + 0.12241, + -0.14646, + -0.0712 + ], + [ + -0.10956, + 0.13092, + -0.0712 + ], + [ + 0.12441, + -0.13964, + 0.49214 + ], + [ + -0.10775, + 0.13797, + 0.49214 + ] + ], + [ + [ + 0.35621, + 0.03777, + -0.02338 + ], + [ + -0.01248, + 0.26468, + 0.11331 + ], + [ + -0.00414, + -0.20458, + -0.02079 + ], + [ + 0.13614, + 0.03173, + 0.01828 + ], + [ + -0.21048, + 0.23406, + 0.14368 + ], + [ + 0.12205, + -0.35983, + -0.08947 + ], + [ + -0.00816, + 0.34219, + 0.13434 + ], + [ + 0.08269, + 0.40561, + 0.13434 + ], + [ + -0.16961, + -0.24646, + 0.0 + ], + [ + -0.07869, + -0.18298, + 0.0 + ] + ], + [ + [ + 0.08763, + -0.12501, + 0.17167 + ], + [ + 0.23021, + -0.21276, + 0.19089 + ], + [ + 0.22699, + -0.03128, + 0.004 + ], + [ + 0.17274, + -0.12267, + 0.12631 + ], + [ + 0.30679, + -0.20091, + 0.13995 + ], + [ + 0.17819, + 0.02876, + -0.03374 + ], + [ + 0.14633, + -0.2236, + 0.24447 + ], + [ + 0.27562, + -0.2864, + 0.24447 + ], + [ + 0.2087, + 0.00407, + -0.02349 + ], + [ + 0.3381, + -0.05879, + -0.02349 + ] + ], + [ + [ + -0.03439, + 0.20845, + -0.08436 + ], + [ + 0.10132, + 0.12492, + 0.21333 + ], + [ + 0.09825, + 0.29765, + -0.05039 + ], + [ + 0.04661, + 0.21067, + 0.01499 + ], + [ + 0.1742, + 0.13619, + 0.28877 + ], + [ + 0.0518, + 0.3548, + -0.19524 + ], + [ + -0.0061, + 0.00962, + 0.25059 + ], + [ + 0.17212, + 0.15982, + 0.25059 + ], + [ + 0.05325, + 0.22623, + -0.0 + ], + [ + 0.23161, + 0.37655, + 0.0 + ] + ], + [ + [ + 0.11162, + 0.06509, + 0.02308 + ], + [ + 0.14993, + 0.04151, + -0.33119 + ], + [ + 0.14906, + 0.09027, + 0.04812 + ], + [ + 0.13449, + 0.06571, + -0.0752 + ], + [ + 0.1705, + 0.04469, + -0.39945 + ], + [ + 0.13595, + 0.10639, + 0.23143 + ], + [ + 0.2735, + 0.10557, + -0.39525 + ], + [ + 0.01602, + -0.04523, + -0.39525 + ], + [ + 0.29038, + 0.16678, + 0.0 + ], + [ + 0.03269, + 0.01586, + 0.0 + ] + ], + [ + [ + -0.03882, + 0.11693, + 0.54065 + ], + [ + -0.10279, + 0.1563, + 0.0071 + ], + [ + -0.10135, + 0.07488, + 0.15 + ], + [ + -0.077, + 0.11588, + 0.26205 + ], + [ + -0.13715, + 0.15099, + -0.23645 + ], + [ + -0.07945, + 0.04794, + 0.35448 + ], + [ + -0.0488, + 0.38022, + 0.03967 + ], + [ + -0.13952, + -0.02972, + 0.03967 + ], + [ + -0.07677, + 0.27826, + -0.0 + ], + [ + -0.16757, + -0.13202, + 0.0 + ] + ], + [ + [ + 0.0, + -0.0, + -0.04194 + ], + [ + -0.0, + 0.0, + 0.03831 + ], + [ + 0.0, + -0.0, + 0.00319 + ], + [ + 0.0, + -0.0, + 0.01891 + ], + [ + -0.0, + -0.0, + 0.17736 + ], + [ + 0.0, + -0.0, + 0.48883 + ], + [ + 0.05396, + -0.10868, + -0.03246 + ], + [ + -0.05396, + 0.10868, + -0.03246 + ], + [ + 0.18565, + 0.45313, + -0.32776 + ], + [ + -0.18565, + -0.45313, + -0.32776 + ] + ], + [ + [ + -0.00202, + -0.13173, + 0.0 + ], + [ + -0.15353, + 0.10217, + -0.0 + ], + [ + 0.1513, + 0.09522, + -0.0 + ], + [ + 0.00089, + -0.12991, + -0.0 + ], + [ + -0.48067, + 0.05041, + 0.0 + ], + [ + -0.08593, + 0.38771, + -0.0 + ], + [ + -0.07215, + 0.29857, + 0.00552 + ], + [ + -0.07215, + 0.29857, + -0.00552 + ], + [ + 0.37944, + 0.12585, + -0.00784 + ], + [ + 0.37944, + 0.12585, + 0.00784 + ] + ], + [ + [ + -0.0, + -0.0, + -0.10981 + ], + [ + -0.0, + 0.0, + -0.02475 + ], + [ + 0.0, + -0.0, + -0.00355 + ], + [ + 0.0, + -0.0, + 0.27488 + ], + [ + -0.0, + 0.0, + -0.27404 + ], + [ + 0.0, + -0.0, + -0.3185 + ], + [ + 0.29513, + 0.24012, + -0.15284 + ], + [ + -0.29513, + -0.24012, + -0.15284 + ], + [ + -0.39216, + 0.15376, + -0.14852 + ], + [ + 0.39216, + -0.15376, + -0.14852 + ] + ], + [ + [ + -0.30338, + -0.01027, + 0.0 + ], + [ + 0.12972, + 0.15827, + 0.0 + ], + [ + 0.1133, + -0.15172, + 0.0 + ], + [ + 0.13112, + 0.00249, + -0.0 + ], + [ + -0.2129, + 0.10527, + 0.0 + ], + [ + 0.34096, + -0.42998, + 0.0 + ], + [ + 0.21211, + 0.37329, + 0.01161 + ], + [ + 0.21211, + 0.37329, + -0.01161 + ], + [ + -0.09751, + -0.18332, + 0.01018 + ], + [ + -0.09751, + -0.18332, + -0.01018 + ] + ], + [ + [ + 0.01637, + -0.15249, + -0.0 + ], + [ + 0.25588, + 0.09816, + 0.0 + ], + [ + -0.26482, + 0.12899, + -0.0 + ], + [ + -0.0011, + -0.13027, + 0.0 + ], + [ + 0.02868, + 0.06975, + -0.0 + ], + [ + -0.42225, + 0.31167, + 0.0 + ], + [ + 0.32881, + 0.29587, + 0.01636 + ], + [ + 0.32881, + 0.29587, + -0.01636 + ], + [ + -0.20217, + 0.14639, + -0.00576 + ], + [ + -0.20217, + 0.14639, + 0.00576 + ] + ], + [ + [ + 0.0, + -0.0, + 0.00887 + ], + [ + 0.0, + 0.0, + -0.09871 + ], + [ + -0.0, + 0.0, + 0.09053 + ], + [ + 0.0, + -0.0, + -0.00868 + ], + [ + 0.0, + 0.0, + 0.25154 + ], + [ + -0.0, + 0.0, + -0.22614 + ], + [ + -0.40951, + -0.21673, + 0.12035 + ], + [ + 0.40951, + 0.21673, + 0.12035 + ], + [ + -0.38405, + 0.21559, + -0.10303 + ], + [ + 0.38405, + -0.21559, + -0.10303 + ] + ], + [ + [ + -0.02543, + 0.00344, + -0.0 + ], + [ + 0.04893, + 0.13177, + -0.0 + ], + [ + 0.00883, + -0.13705, + 0.0 + ], + [ + -0.10674, + -0.00362, + 0.0 + ], + [ + 0.56453, + 0.21566, + 0.0 + ], + [ + -0.31827, + 0.27153, + 0.0 + ], + [ + -0.03713, + -0.17876, + -0.03584 + ], + [ + -0.03713, + -0.17876, + 0.03584 + ], + [ + 0.40768, + -0.03918, + -0.04678 + ], + [ + 0.40768, + -0.03918, + 0.04678 + ] + ], + [ + [ + 0.00231, + 0.10928, + 0.0 + ], + [ + 0.05685, + -0.13378, + 0.0 + ], + [ + -0.0474, + -0.11294, + 0.0 + ], + [ + -0.01233, + 0.04506, + -0.0 + ], + [ + -0.52142, + -0.21973, + -0.0 + ], + [ + -0.35028, + 0.26893, + -0.0 + ], + [ + 0.12207, + 0.30561, + 0.08598 + ], + [ + 0.12207, + 0.30561, + -0.08598 + ], + [ + 0.31262, + 0.00395, + -0.06195 + ], + [ + 0.31262, + 0.00395, + 0.06195 + ] + ], + [ + [ + 0.0, + 0.0, + -0.03972 + ], + [ + 0.0, + -0.0, + -0.12919 + ], + [ + -0.0, + -0.0, + -0.13327 + ], + [ + -0.0, + 0.0, + 0.23053 + ], + [ + -0.0, + -0.0, + 0.30264 + ], + [ + -0.0, + 0.0, + 0.29357 + ], + [ + -0.38597, + -0.13219, + 0.10483 + ], + [ + 0.38597, + 0.13219, + 0.10483 + ], + [ + 0.32467, + -0.27049, + 0.10253 + ], + [ + -0.32467, + 0.27049, + 0.10253 + ] + ], + [ + [ + -0.05861, + 0.00441, + 0.0 + ], + [ + -0.09528, + 0.03471, + -0.0 + ], + [ + -0.1014, + -0.05875, + -0.0 + ], + [ + 0.35947, + 0.01218, + 0.0 + ], + [ + -0.05156, + 0.02043, + -0.0 + ], + [ + -0.48655, + 0.41366, + 0.0 + ], + [ + -0.1898, + -0.35118, + -0.05827 + ], + [ + -0.1898, + -0.35118, + 0.05827 + ], + [ + -0.04587, + 0.16973, + -0.14986 + ], + [ + -0.04587, + 0.16973, + 0.14986 + ] + ], + [ + [ + -0.00439, + -0.00481, + 0.0 + ], + [ + 0.07082, + 0.03751, + -0.0 + ], + [ + -0.09921, + 0.06613, + -0.0 + ], + [ + 0.03222, + -0.00465, + -0.0 + ], + [ + -0.29571, + -0.02474, + 0.0 + ], + [ + 0.18936, + -0.28673, + 0.0 + ], + [ + -0.30023, + -0.18173, + 0.17634 + ], + [ + -0.30023, + -0.18173, + -0.17634 + ], + [ + 0.36539, + -0.21413, + 0.22901 + ], + [ + 0.36539, + -0.21413, + -0.22901 + ] + ], + [ + [ + -0.00779, + 0.00576, + 0.0 + ], + [ + -0.11716, + -0.03627, + -0.0 + ], + [ + -0.09425, + 0.04279, + -0.0 + ], + [ + 0.0643, + 0.00246, + -0.0 + ], + [ + 0.3148, + 0.03143, + 0.0 + ], + [ + 0.12276, + -0.2196, + 0.0 + ], + [ + 0.40876, + 0.12013, + -0.29765 + ], + [ + 0.40876, + 0.12013, + 0.29765 + ], + [ + 0.31078, + -0.12524, + 0.14469 + ], + [ + 0.31078, + -0.12524, + -0.14469 + ] + ], + [ + [ + -0.00225, + 0.02567, + 0.0 + ], + [ + 0.00032, + 0.01345, + 0.0 + ], + [ + 0.05318, + 0.02485, + -0.0 + ], + [ + -0.0044, + -0.01066, + -0.0 + ], + [ + -0.12087, + -0.0107, + -0.0 + ], + [ + -0.25162, + 0.38711, + 0.0 + ], + [ + 0.09384, + -0.09757, + -0.09518 + ], + [ + 0.09384, + -0.09757, + 0.09518 + ], + [ + -0.18232, + -0.45896, + 0.33551 + ], + [ + -0.18232, + -0.45896, + -0.33551 + ] + ], + [ + [ + 0.0, + 0.0, + -0.00184 + ], + [ + 0.0, + 0.0, + 0.03665 + ], + [ + 0.0, + -0.0, + -0.04916 + ], + [ + -0.0, + -0.0, + -0.00354 + ], + [ + -0.0, + -0.0, + -0.41631 + ], + [ + 0.0, + -0.0, + 0.61037 + ], + [ + -0.02964, + -0.25889, + -0.03198 + ], + [ + 0.02964, + 0.25889, + -0.03198 + ], + [ + -0.36575, + -0.14298, + 0.04512 + ], + [ + 0.36575, + 0.14298, + 0.04512 + ] + ], + [ + [ + 0.0084, + 0.00642, + -0.0 + ], + [ + 0.0268, + 0.06144, + 0.0 + ], + [ + 0.0037, + -0.01404, + 0.0 + ], + [ + -0.05267, + -0.0022, + 0.0 + ], + [ + -0.53658, + -0.04001, + -0.0 + ], + [ + 0.07425, + -0.09481, + -0.0 + ], + [ + 0.27006, + -0.38888, + -0.29869 + ], + [ + 0.27006, + -0.38888, + 0.29869 + ], + [ + 0.02654, + 0.13597, + -0.1078 + ], + [ + 0.02654, + 0.13597, + 0.1078 + ] + ], + [ + [ + -0.0, + -0.0, + -0.00538 + ], + [ + -0.0, + -0.0, + 0.03728 + ], + [ + -0.0, + 0.0, + 0.02593 + ], + [ + 0.0, + 0.0, + 0.03713 + ], + [ + 0.0, + 0.0, + -0.58904 + ], + [ + -0.0, + 0.0, + -0.39737 + ], + [ + -0.09009, + -0.4006, + -0.03534 + ], + [ + 0.09009, + 0.4006, + -0.03534 + ], + [ + 0.26176, + 0.08217, + -0.02664 + ], + [ + -0.26176, + -0.08217, + -0.02664 + ] + ], + [ + [ + 0.01356, + -0.4884, + 0.0 + ], + [ + 0.004, + -0.04364, + 0.0 + ], + [ + 0.00794, + -0.04548, + -0.0 + ], + [ + -0.02486, + 0.74626, + -0.0 + ], + [ + -0.2215, + -0.07131, + -0.0 + ], + [ + -0.15757, + 0.20068, + 0.0 + ], + [ + 0.07178, + 0.02997, + -0.03159 + ], + [ + 0.07178, + 0.02997, + 0.03159 + ], + [ + 0.08715, + -0.13378, + 0.08768 + ], + [ + 0.08715, + -0.13378, + -0.08768 + ] + ], + [ + [ + -0.0002, + -0.00069, + 0.0 + ], + [ + -0.00495, + -0.00297, + 0.0 + ], + [ + -0.0318, + 0.04186, + -0.0 + ], + [ + 0.00191, + 0.00044, + -0.0 + ], + [ + -0.01165, + 0.0692, + -0.0 + ], + [ + 0.30746, + 0.25797, + 0.0 + ], + [ + 0.03293, + -0.0169, + 0.05137 + ], + [ + 0.03293, + -0.0169, + -0.05137 + ], + [ + 0.02841, + -0.37552, + -0.51939 + ], + [ + 0.02841, + -0.37552, + 0.51939 + ] + ], + [ + [ + 0.00012, + -0.00042, + 0.0 + ], + [ + 0.04679, + 0.01958, + 0.0 + ], + [ + -0.00371, + 0.00491, + 0.0 + ], + [ + -0.00149, + -0.00064, + 0.0 + ], + [ + 0.09064, + -0.52493, + 0.0 + ], + [ + 0.03743, + 0.02953, + -0.0 + ], + [ + -0.31537, + 0.15136, + -0.47757 + ], + [ + -0.31537, + 0.15136, + 0.47757 + ], + [ + 0.00263, + -0.04245, + -0.05854 + ], + [ + 0.00263, + -0.04245, + 0.05854 + ] + ], + [ + [ + -0.0, + 0.0, + 0.00024 + ], + [ + -0.0, + -0.0, + -0.00123 + ], + [ + -0.0, + -0.0, + 0.09178 + ], + [ + 0.0, + -0.0, + 0.00054 + ], + [ + -0.0, + 0.0, + 0.00043 + ], + [ + 0.0, + 0.0, + 0.01295 + ], + [ + 0.00389, + -0.00117, + 0.00643 + ], + [ + -0.00389, + 0.00117, + 0.00643 + ], + [ + 0.03485, + -0.42824, + -0.55771 + ], + [ + -0.03485, + 0.42824, + -0.55771 + ] + ], + [ + [ + -0.0, + -0.0, + 0.00025 + ], + [ + 0.0, + -0.0, + -0.09206 + ], + [ + 0.0, + 0.0, + -0.00116 + ], + [ + 0.0, + 0.0, + -0.00087 + ], + [ + -0.0, + 0.0, + -0.0121 + ], + [ + -0.0, + -0.0, + -7e-05 + ], + [ + 0.38866, + -0.17999, + 0.55873 + ], + [ + -0.38866, + 0.17999, + 0.55873 + ], + [ + -0.00119, + 0.00461, + 0.00598 + ], + [ + 0.00119, + -0.00461, + 0.00598 + ] + ], + [ + [ + 0.00033, + -0.00036, + 0.0 + ], + [ + -0.04367, + 0.08379, + -0.0 + ], + [ + -0.00391, + -0.00472, + 0.0 + ], + [ + -0.00183, + 0.00073, + -0.0 + ], + [ + 0.13433, + -0.82891, + -0.0 + ], + [ + 0.0499, + 0.04004, + 0.0 + ], + [ + 0.19923, + -0.08421, + 0.30662 + ], + [ + 0.19923, + -0.08421, + -0.30662 + ], + [ + 0.00035, + 0.00605, + 0.00808 + ], + [ + 0.00035, + 0.00605, + -0.00808 + ] + ], + [ + [ + 0.00018, + 0.00109, + -0.0 + ], + [ + 0.00303, + -0.00518, + 0.0 + ], + [ + -0.05688, + -0.07396, + -0.0 + ], + [ + -0.00014, + -0.00276, + 0.0 + ], + [ + -0.00695, + 0.05536, + 0.0 + ], + [ + 0.70907, + 0.57724, + -0.0 + ], + [ + -0.01273, + 0.00553, + -0.0183 + ], + [ + -0.01273, + 0.00553, + 0.0183 + ], + [ + -0.01808, + 0.15752, + 0.22453 + ], + [ + -0.01808, + 0.15752, + -0.22453 + ] + ] + ], + "reduced_masses": [ + 1.073, + 2.89, + 4.538, + 4.529, + 4.193, + 3.408, + 7.394, + 1.055, + 2.18, + 2.027, + 3.434, + 3.328, + 1.207, + 1.568, + 1.609, + 1.995, + 2.747, + 1.247, + 1.338, + 1.059, + 1.05, + 1.092, + 1.046, + 10.766, + 1.039, + 1.037, + 1.101, + 1.101, + 1.107, + 1.104 + ], + "energies": { + "zpve": 0.0807347, + "scf": -193.0049629, + "total": -192.9242282 + } + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:05.960000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:18.200000" + }, + "cpu_time": 9.86, + "wall_time": 12.3 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "force" + } +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/ref_parser.json new file mode 100644 index 0000000..196dc21 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/ref_parser.json @@ -0,0 +1,2181 @@ +{ + "all_done": true, + "header": { + "executable": "force", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:05.960000" + } + }, + "centers": { + "center_of_mass": [ + 0.00543831, + -1.01535818, + 0.0 + ], + "center_of_charge": [ + 0.00482639, + -0.8580092, + 0.0 + ] + }, + "coordinates": { + "coords": [ + [ + 0.05814498, + -3.50738391, + 0.0 + ], + [ + 2.43488579, + 0.35436813, + 0.0 + ], + [ + -2.48030013, + 0.26702469, + 0.0 + ], + [ + -0.00509977, + -1.20231423, + 0.0 + ], + [ + 2.11408643, + 2.42830913, + 0.0 + ], + [ + -4.10640229, + -1.05476626, + 0.0 + ], + [ + 3.57887083, + -0.16668276, + 1.68562205 + ], + [ + 3.57887083, + -0.16668276, + -1.68562205 + ], + [ + -2.58652834, + 1.52406399, + 1.68701865 + ], + [ + -2.58652834, + 1.52406399, + -1.68701865 + ] + ], + "species": [ + "o", + "c", + "c", + "c", + "h", + "h", + "h", + "h", + "h", + "h" + ], + "charges": [ + 8.0, + 6.0, + 6.0, + 6.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "o": "def-SV(P)", + "c": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 68, + "number_scf_aux_basis_func": null + }, + "symmetry": { + "symbol": "cs", + "n_reps": 2, + "reps": [ + "a'", + "a\"" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": null, + "pre_scf_run": null, + "scf_iterations": null, + "scf_energies": null, + "cosmo_results": null, + "electrostatic_moments": null, + "timings": { + "cpu_time": 9.86, + "wall_time": 12.3, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:18.200000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 1e-10, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": { + "calc_type": null, + "residuum_convergence_criterium": null, + "n_occupied_orbitals": 16, + "orbital_characterization": "scfconv=8", + "max_davidson_iter": null, + "machine_precision": 2.220446049250313e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 12082, + "max_treated_vectors": 24, + "irrep_data": null + }, + "escf_iterations": { + "steps": [ + [ + [ + "a'", + 0, + 0.06477864201546545 + ], + [ + "a\"", + 0, + 0.02101071400167658 + ] + ], + [ + [ + "a'", + 0, + 0.003108084414748305 + ], + [ + "a\"", + 0, + 0.002142588191202605 + ] + ], + [ + [ + "a'", + 0, + 0.000149354224924067 + ], + [ + "a\"", + 0, + 0.0001131083813417664 + ] + ], + [ + [ + "a'", + 15, + 3.352126044199397e-06 + ], + [ + "a\"", + 9, + 1.725170449884324e-06 + ] + ] + ], + "converged": true + }, + "escf_gs_total_en": null, + "escf_excitations": null, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": { + "memory": { + "core_memory_dft": 497, + "memory_per_atom": 61, + "atoms_per_loop": 10 + }, + "construction_timings": [ + [ + " first deriv. of -> Dip. deriv.", + 0.0, + 0.0 + ], + [ + " first deriv. of \n -> RHS\n second deriv. of -> Hessian\n -> Hessian\n nucl. rep. -> Hessian", + 0.04, + 0.06 + ], + [ + " second deriv. of 2e energy -> Hessian\n treating Coulomb (and exchange) contribution", + 1.78, + 1.78 + ], + [ + " second deriv. of 2e energy -> Hessian\n treating exchange-correlation contribution", + 2.06, + 2.06 + ], + [ + "", + 0.0, + 0.02 + ], + [ + " *S(i,j)xi -> Dip. deriv.", + 0.0, + 0.01 + ], + [ + " epsilon(i)*S(i,j)xi*S(i,j)chi -> Hessian", + 0.0, + 0.01 + ], + [ + " G(a,i)[S(k,l)xi] -> RHS\n G(i,j)[S(k,l)xi]*S(i,j)chi -> Hessian", + 0.99, + 1.11 + ], + [ + " G(mu,nu)[D(kap,lam)]xi", + 1.58, + 1.62 + ], + [ + " F(a,i)xi -> RHS\n F(i,j)xi*S(i,j)chi -> Hessian", + 0.0, + 0.03 + ], + [ + " epsilon(i)*S(a,i)xi -> RHS", + 0.0, + 0.03 + ], + [ + " *U(a,i)xi -> Dip. deriv.", + 0.0, + 0.03 + ], + [ + " RHS(a,i)xi*U(a,i)chi -> Hessian", + 0.0, + 0.02 + ] + ] + }, + "aoforce_analysis": { + "rotational": { + "dipole_moment": [ + 0.0205132454, + 1.0230185698, + 0.0 + ], + "b": [ + 0.3345568942, + 0.276870323, + 0.1607738674 + ], + "intensities": [ + 0.0004207932, + 1.0465669942, + 0.0 + ], + "m": [ + [ + 0.9999983143, + 0.0018361363, + 0.0 + ], + [ + -0.0018361363, + 0.9999983143, + 0.0 + ], + [ + 0.0, + 0.0, + 1.0 + ] + ] + }, + "vibrational": { + "frequencies": [ + -113.75, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 157.28, + 372.62, + 482.93, + 510.25, + 764.5, + 847.27, + 883.74, + 1033.97, + 1070.1, + 1191.2, + 1325.01, + 1326.94, + 1395.67, + 1411.52, + 1415.09, + 1417.77, + 1771.88, + 2935.92, + 2950.81, + 3011.16, + 3036.78, + 3053.95, + 3072.08 + ], + "symmetries": [ + "a\"", + null, + null, + null, + null, + null, + "a\"", + "a'", + "a\"", + "a'", + "a'", + null, + "a\"", + "a'", + "a'", + "a\"", + "a'", + "a'", + "a'", + "a'", + "a\"", + "a'", + "a\"", + "a'", + "a'", + "a'", + "a\"", + "a\"", + "a'", + "a'" + ], + "ir": [ + true, + null, + null, + null, + null, + null, + null, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true + ], + "dDIP_dQ": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0006, + 0.001, + 0.0002, + 0.0026, + 0.0011, + 0.0004, + 0.0025, + 0.0009, + 0.0022, + 0.0073, + 0.0028, + 0.0063, + 0.0033, + 0.001, + 0.0016, + 0.0032, + 0.0095, + 0.001, + 0.0012, + 0.0017, + 0.001, + 0.0026, + 0.0021 + ], + "intensities": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.56, + 1.62, + 0.09, + 11.66, + 2.13, + 0.29, + 10.77, + 1.31, + 8.93, + 93.89, + 14.38, + 71.48, + 18.88, + 1.68, + 4.3, + 18.37, + 160.09, + 1.72, + 2.54, + 5.02, + 1.91, + 12.26, + 7.71 + ], + "intensities_perc": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.35, + 1.01, + 0.06, + 7.28, + 1.33, + 0.18, + 6.73, + 0.82, + 5.58, + 58.65, + 8.98, + 44.65, + 11.79, + 1.05, + 2.69, + 11.48, + 100.0, + 1.07, + 1.59, + 3.14, + 1.2, + 7.66, + 4.81 + ], + "raman": [ + true, + null, + null, + null, + null, + null, + null, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true + ], + "eigenvectors": [ + [ + [ + 0.0, + 0.0, + 0.0492 + ], + [ + 0.0, + -0.0, + -0.00463 + ], + [ + 0.0, + 0.0, + -0.04844 + ], + [ + 0.0, + 0.0, + 0.01476 + ], + [ + 0.0, + -0.0, + 0.49283 + ], + [ + 0.0, + -0.0, + -0.176 + ], + [ + 0.28911, + -0.39613, + -0.32814 + ], + [ + -0.28911, + 0.39613, + -0.32814 + ], + [ + -0.07583, + -0.0811, + 0.00756 + ], + [ + 0.07583, + 0.0811, + 0.00756 + ] + ], + [ + [ + 0.00267, + -0.00381, + -0.10381 + ], + [ + 0.00701, + -0.00648, + 0.05039 + ], + [ + 0.00691, + -0.00095, + 0.38141 + ], + [ + 0.00526, + -0.00374, + 0.0902 + ], + [ + 0.00934, + -0.00612, + 0.2431 + ], + [ + 0.00543, + 0.00088, + 0.38454 + ], + [ + 0.12241, + -0.14646, + -0.0712 + ], + [ + -0.10956, + 0.13092, + -0.0712 + ], + [ + 0.12441, + -0.13964, + 0.49214 + ], + [ + -0.10775, + 0.13797, + 0.49214 + ] + ], + [ + [ + 0.35621, + 0.03777, + -0.02338 + ], + [ + -0.01248, + 0.26468, + 0.11331 + ], + [ + -0.00414, + -0.20458, + -0.02079 + ], + [ + 0.13614, + 0.03173, + 0.01828 + ], + [ + -0.21048, + 0.23406, + 0.14368 + ], + [ + 0.12205, + -0.35983, + -0.08947 + ], + [ + -0.00816, + 0.34219, + 0.13434 + ], + [ + 0.08269, + 0.40561, + 0.13434 + ], + [ + -0.16961, + -0.24646, + 0.0 + ], + [ + -0.07869, + -0.18298, + 0.0 + ] + ], + [ + [ + 0.08763, + -0.12501, + 0.17167 + ], + [ + 0.23021, + -0.21276, + 0.19089 + ], + [ + 0.22699, + -0.03128, + 0.004 + ], + [ + 0.17274, + -0.12267, + 0.12631 + ], + [ + 0.30679, + -0.20091, + 0.13995 + ], + [ + 0.17819, + 0.02876, + -0.03374 + ], + [ + 0.14633, + -0.2236, + 0.24447 + ], + [ + 0.27562, + -0.2864, + 0.24447 + ], + [ + 0.2087, + 0.00407, + -0.02349 + ], + [ + 0.3381, + -0.05879, + -0.02349 + ] + ], + [ + [ + -0.03439, + 0.20845, + -0.08436 + ], + [ + 0.10132, + 0.12492, + 0.21333 + ], + [ + 0.09825, + 0.29765, + -0.05039 + ], + [ + 0.04661, + 0.21067, + 0.01499 + ], + [ + 0.1742, + 0.13619, + 0.28877 + ], + [ + 0.0518, + 0.3548, + -0.19524 + ], + [ + -0.0061, + 0.00962, + 0.25059 + ], + [ + 0.17212, + 0.15982, + 0.25059 + ], + [ + 0.05325, + 0.22623, + -0.0 + ], + [ + 0.23161, + 0.37655, + 0.0 + ] + ], + [ + [ + 0.11162, + 0.06509, + 0.02308 + ], + [ + 0.14993, + 0.04151, + -0.33119 + ], + [ + 0.14906, + 0.09027, + 0.04812 + ], + [ + 0.13449, + 0.06571, + -0.0752 + ], + [ + 0.1705, + 0.04469, + -0.39945 + ], + [ + 0.13595, + 0.10639, + 0.23143 + ], + [ + 0.2735, + 0.10557, + -0.39525 + ], + [ + 0.01602, + -0.04523, + -0.39525 + ], + [ + 0.29038, + 0.16678, + 0.0 + ], + [ + 0.03269, + 0.01586, + 0.0 + ] + ], + [ + [ + -0.03882, + 0.11693, + 0.54065 + ], + [ + -0.10279, + 0.1563, + 0.0071 + ], + [ + -0.10135, + 0.07488, + 0.15 + ], + [ + -0.077, + 0.11588, + 0.26205 + ], + [ + -0.13715, + 0.15099, + -0.23645 + ], + [ + -0.07945, + 0.04794, + 0.35448 + ], + [ + -0.0488, + 0.38022, + 0.03967 + ], + [ + -0.13952, + -0.02972, + 0.03967 + ], + [ + -0.07677, + 0.27826, + -0.0 + ], + [ + -0.16757, + -0.13202, + 0.0 + ] + ], + [ + [ + 0.0, + -0.0, + -0.04194 + ], + [ + -0.0, + 0.0, + 0.03831 + ], + [ + 0.0, + -0.0, + 0.00319 + ], + [ + 0.0, + -0.0, + 0.01891 + ], + [ + -0.0, + -0.0, + 0.17736 + ], + [ + 0.0, + -0.0, + 0.48883 + ], + [ + 0.05396, + -0.10868, + -0.03246 + ], + [ + -0.05396, + 0.10868, + -0.03246 + ], + [ + 0.18565, + 0.45313, + -0.32776 + ], + [ + -0.18565, + -0.45313, + -0.32776 + ] + ], + [ + [ + -0.00202, + -0.13173, + 0.0 + ], + [ + -0.15353, + 0.10217, + -0.0 + ], + [ + 0.1513, + 0.09522, + -0.0 + ], + [ + 0.00089, + -0.12991, + -0.0 + ], + [ + -0.48067, + 0.05041, + 0.0 + ], + [ + -0.08593, + 0.38771, + -0.0 + ], + [ + -0.07215, + 0.29857, + 0.00552 + ], + [ + -0.07215, + 0.29857, + -0.00552 + ], + [ + 0.37944, + 0.12585, + -0.00784 + ], + [ + 0.37944, + 0.12585, + 0.00784 + ] + ], + [ + [ + -0.0, + -0.0, + -0.10981 + ], + [ + -0.0, + 0.0, + -0.02475 + ], + [ + 0.0, + -0.0, + -0.00355 + ], + [ + 0.0, + -0.0, + 0.27488 + ], + [ + -0.0, + 0.0, + -0.27404 + ], + [ + 0.0, + -0.0, + -0.3185 + ], + [ + 0.29513, + 0.24012, + -0.15284 + ], + [ + -0.29513, + -0.24012, + -0.15284 + ], + [ + -0.39216, + 0.15376, + -0.14852 + ], + [ + 0.39216, + -0.15376, + -0.14852 + ] + ], + [ + [ + -0.30338, + -0.01027, + 0.0 + ], + [ + 0.12972, + 0.15827, + 0.0 + ], + [ + 0.1133, + -0.15172, + 0.0 + ], + [ + 0.13112, + 0.00249, + -0.0 + ], + [ + -0.2129, + 0.10527, + 0.0 + ], + [ + 0.34096, + -0.42998, + 0.0 + ], + [ + 0.21211, + 0.37329, + 0.01161 + ], + [ + 0.21211, + 0.37329, + -0.01161 + ], + [ + -0.09751, + -0.18332, + 0.01018 + ], + [ + -0.09751, + -0.18332, + -0.01018 + ] + ], + [ + [ + 0.01637, + -0.15249, + -0.0 + ], + [ + 0.25588, + 0.09816, + 0.0 + ], + [ + -0.26482, + 0.12899, + -0.0 + ], + [ + -0.0011, + -0.13027, + 0.0 + ], + [ + 0.02868, + 0.06975, + -0.0 + ], + [ + -0.42225, + 0.31167, + 0.0 + ], + [ + 0.32881, + 0.29587, + 0.01636 + ], + [ + 0.32881, + 0.29587, + -0.01636 + ], + [ + -0.20217, + 0.14639, + -0.00576 + ], + [ + -0.20217, + 0.14639, + 0.00576 + ] + ], + [ + [ + 0.0, + -0.0, + 0.00887 + ], + [ + 0.0, + 0.0, + -0.09871 + ], + [ + -0.0, + 0.0, + 0.09053 + ], + [ + 0.0, + -0.0, + -0.00868 + ], + [ + 0.0, + 0.0, + 0.25154 + ], + [ + -0.0, + 0.0, + -0.22614 + ], + [ + -0.40951, + -0.21673, + 0.12035 + ], + [ + 0.40951, + 0.21673, + 0.12035 + ], + [ + -0.38405, + 0.21559, + -0.10303 + ], + [ + 0.38405, + -0.21559, + -0.10303 + ] + ], + [ + [ + -0.02543, + 0.00344, + -0.0 + ], + [ + 0.04893, + 0.13177, + -0.0 + ], + [ + 0.00883, + -0.13705, + 0.0 + ], + [ + -0.10674, + -0.00362, + 0.0 + ], + [ + 0.56453, + 0.21566, + 0.0 + ], + [ + -0.31827, + 0.27153, + 0.0 + ], + [ + -0.03713, + -0.17876, + -0.03584 + ], + [ + -0.03713, + -0.17876, + 0.03584 + ], + [ + 0.40768, + -0.03918, + -0.04678 + ], + [ + 0.40768, + -0.03918, + 0.04678 + ] + ], + [ + [ + 0.00231, + 0.10928, + 0.0 + ], + [ + 0.05685, + -0.13378, + 0.0 + ], + [ + -0.0474, + -0.11294, + 0.0 + ], + [ + -0.01233, + 0.04506, + -0.0 + ], + [ + -0.52142, + -0.21973, + -0.0 + ], + [ + -0.35028, + 0.26893, + -0.0 + ], + [ + 0.12207, + 0.30561, + 0.08598 + ], + [ + 0.12207, + 0.30561, + -0.08598 + ], + [ + 0.31262, + 0.00395, + -0.06195 + ], + [ + 0.31262, + 0.00395, + 0.06195 + ] + ], + [ + [ + 0.0, + 0.0, + -0.03972 + ], + [ + 0.0, + -0.0, + -0.12919 + ], + [ + -0.0, + -0.0, + -0.13327 + ], + [ + -0.0, + 0.0, + 0.23053 + ], + [ + -0.0, + -0.0, + 0.30264 + ], + [ + -0.0, + 0.0, + 0.29357 + ], + [ + -0.38597, + -0.13219, + 0.10483 + ], + [ + 0.38597, + 0.13219, + 0.10483 + ], + [ + 0.32467, + -0.27049, + 0.10253 + ], + [ + -0.32467, + 0.27049, + 0.10253 + ] + ], + [ + [ + -0.05861, + 0.00441, + 0.0 + ], + [ + -0.09528, + 0.03471, + -0.0 + ], + [ + -0.1014, + -0.05875, + -0.0 + ], + [ + 0.35947, + 0.01218, + 0.0 + ], + [ + -0.05156, + 0.02043, + -0.0 + ], + [ + -0.48655, + 0.41366, + 0.0 + ], + [ + -0.1898, + -0.35118, + -0.05827 + ], + [ + -0.1898, + -0.35118, + 0.05827 + ], + [ + -0.04587, + 0.16973, + -0.14986 + ], + [ + -0.04587, + 0.16973, + 0.14986 + ] + ], + [ + [ + -0.00439, + -0.00481, + 0.0 + ], + [ + 0.07082, + 0.03751, + -0.0 + ], + [ + -0.09921, + 0.06613, + -0.0 + ], + [ + 0.03222, + -0.00465, + -0.0 + ], + [ + -0.29571, + -0.02474, + 0.0 + ], + [ + 0.18936, + -0.28673, + 0.0 + ], + [ + -0.30023, + -0.18173, + 0.17634 + ], + [ + -0.30023, + -0.18173, + -0.17634 + ], + [ + 0.36539, + -0.21413, + 0.22901 + ], + [ + 0.36539, + -0.21413, + -0.22901 + ] + ], + [ + [ + -0.00779, + 0.00576, + 0.0 + ], + [ + -0.11716, + -0.03627, + -0.0 + ], + [ + -0.09425, + 0.04279, + -0.0 + ], + [ + 0.0643, + 0.00246, + -0.0 + ], + [ + 0.3148, + 0.03143, + 0.0 + ], + [ + 0.12276, + -0.2196, + 0.0 + ], + [ + 0.40876, + 0.12013, + -0.29765 + ], + [ + 0.40876, + 0.12013, + 0.29765 + ], + [ + 0.31078, + -0.12524, + 0.14469 + ], + [ + 0.31078, + -0.12524, + -0.14469 + ] + ], + [ + [ + -0.00225, + 0.02567, + 0.0 + ], + [ + 0.00032, + 0.01345, + 0.0 + ], + [ + 0.05318, + 0.02485, + -0.0 + ], + [ + -0.0044, + -0.01066, + -0.0 + ], + [ + -0.12087, + -0.0107, + -0.0 + ], + [ + -0.25162, + 0.38711, + 0.0 + ], + [ + 0.09384, + -0.09757, + -0.09518 + ], + [ + 0.09384, + -0.09757, + 0.09518 + ], + [ + -0.18232, + -0.45896, + 0.33551 + ], + [ + -0.18232, + -0.45896, + -0.33551 + ] + ], + [ + [ + 0.0, + 0.0, + -0.00184 + ], + [ + 0.0, + 0.0, + 0.03665 + ], + [ + 0.0, + -0.0, + -0.04916 + ], + [ + -0.0, + -0.0, + -0.00354 + ], + [ + -0.0, + -0.0, + -0.41631 + ], + [ + 0.0, + -0.0, + 0.61037 + ], + [ + -0.02964, + -0.25889, + -0.03198 + ], + [ + 0.02964, + 0.25889, + -0.03198 + ], + [ + -0.36575, + -0.14298, + 0.04512 + ], + [ + 0.36575, + 0.14298, + 0.04512 + ] + ], + [ + [ + 0.0084, + 0.00642, + -0.0 + ], + [ + 0.0268, + 0.06144, + 0.0 + ], + [ + 0.0037, + -0.01404, + 0.0 + ], + [ + -0.05267, + -0.0022, + 0.0 + ], + [ + -0.53658, + -0.04001, + -0.0 + ], + [ + 0.07425, + -0.09481, + -0.0 + ], + [ + 0.27006, + -0.38888, + -0.29869 + ], + [ + 0.27006, + -0.38888, + 0.29869 + ], + [ + 0.02654, + 0.13597, + -0.1078 + ], + [ + 0.02654, + 0.13597, + 0.1078 + ] + ], + [ + [ + -0.0, + -0.0, + -0.00538 + ], + [ + -0.0, + -0.0, + 0.03728 + ], + [ + -0.0, + 0.0, + 0.02593 + ], + [ + 0.0, + 0.0, + 0.03713 + ], + [ + 0.0, + 0.0, + -0.58904 + ], + [ + -0.0, + 0.0, + -0.39737 + ], + [ + -0.09009, + -0.4006, + -0.03534 + ], + [ + 0.09009, + 0.4006, + -0.03534 + ], + [ + 0.26176, + 0.08217, + -0.02664 + ], + [ + -0.26176, + -0.08217, + -0.02664 + ] + ], + [ + [ + 0.01356, + -0.4884, + 0.0 + ], + [ + 0.004, + -0.04364, + 0.0 + ], + [ + 0.00794, + -0.04548, + -0.0 + ], + [ + -0.02486, + 0.74626, + -0.0 + ], + [ + -0.2215, + -0.07131, + -0.0 + ], + [ + -0.15757, + 0.20068, + 0.0 + ], + [ + 0.07178, + 0.02997, + -0.03159 + ], + [ + 0.07178, + 0.02997, + 0.03159 + ], + [ + 0.08715, + -0.13378, + 0.08768 + ], + [ + 0.08715, + -0.13378, + -0.08768 + ] + ], + [ + [ + -0.0002, + -0.00069, + 0.0 + ], + [ + -0.00495, + -0.00297, + 0.0 + ], + [ + -0.0318, + 0.04186, + -0.0 + ], + [ + 0.00191, + 0.00044, + -0.0 + ], + [ + -0.01165, + 0.0692, + -0.0 + ], + [ + 0.30746, + 0.25797, + 0.0 + ], + [ + 0.03293, + -0.0169, + 0.05137 + ], + [ + 0.03293, + -0.0169, + -0.05137 + ], + [ + 0.02841, + -0.37552, + -0.51939 + ], + [ + 0.02841, + -0.37552, + 0.51939 + ] + ], + [ + [ + 0.00012, + -0.00042, + 0.0 + ], + [ + 0.04679, + 0.01958, + 0.0 + ], + [ + -0.00371, + 0.00491, + 0.0 + ], + [ + -0.00149, + -0.00064, + 0.0 + ], + [ + 0.09064, + -0.52493, + 0.0 + ], + [ + 0.03743, + 0.02953, + -0.0 + ], + [ + -0.31537, + 0.15136, + -0.47757 + ], + [ + -0.31537, + 0.15136, + 0.47757 + ], + [ + 0.00263, + -0.04245, + -0.05854 + ], + [ + 0.00263, + -0.04245, + 0.05854 + ] + ], + [ + [ + -0.0, + 0.0, + 0.00024 + ], + [ + -0.0, + -0.0, + -0.00123 + ], + [ + -0.0, + -0.0, + 0.09178 + ], + [ + 0.0, + -0.0, + 0.00054 + ], + [ + -0.0, + 0.0, + 0.00043 + ], + [ + 0.0, + 0.0, + 0.01295 + ], + [ + 0.00389, + -0.00117, + 0.00643 + ], + [ + -0.00389, + 0.00117, + 0.00643 + ], + [ + 0.03485, + -0.42824, + -0.55771 + ], + [ + -0.03485, + 0.42824, + -0.55771 + ] + ], + [ + [ + -0.0, + -0.0, + 0.00025 + ], + [ + 0.0, + -0.0, + -0.09206 + ], + [ + 0.0, + 0.0, + -0.00116 + ], + [ + 0.0, + 0.0, + -0.00087 + ], + [ + -0.0, + 0.0, + -0.0121 + ], + [ + -0.0, + -0.0, + -7e-05 + ], + [ + 0.38866, + -0.17999, + 0.55873 + ], + [ + -0.38866, + 0.17999, + 0.55873 + ], + [ + -0.00119, + 0.00461, + 0.00598 + ], + [ + 0.00119, + -0.00461, + 0.00598 + ] + ], + [ + [ + 0.00033, + -0.00036, + 0.0 + ], + [ + -0.04367, + 0.08379, + -0.0 + ], + [ + -0.00391, + -0.00472, + 0.0 + ], + [ + -0.00183, + 0.00073, + -0.0 + ], + [ + 0.13433, + -0.82891, + -0.0 + ], + [ + 0.0499, + 0.04004, + 0.0 + ], + [ + 0.19923, + -0.08421, + 0.30662 + ], + [ + 0.19923, + -0.08421, + -0.30662 + ], + [ + 0.00035, + 0.00605, + 0.00808 + ], + [ + 0.00035, + 0.00605, + -0.00808 + ] + ], + [ + [ + 0.00018, + 0.00109, + -0.0 + ], + [ + 0.00303, + -0.00518, + 0.0 + ], + [ + -0.05688, + -0.07396, + -0.0 + ], + [ + -0.00014, + -0.00276, + 0.0 + ], + [ + -0.00695, + 0.05536, + 0.0 + ], + [ + 0.70907, + 0.57724, + -0.0 + ], + [ + -0.01273, + 0.00553, + -0.0183 + ], + [ + -0.01273, + 0.00553, + 0.0183 + ], + [ + -0.01808, + 0.15752, + 0.22453 + ], + [ + -0.01808, + 0.15752, + -0.22453 + ] + ] + ], + "reduced_masses": [ + 1.073, + 2.89, + 4.538, + 4.529, + 4.193, + 3.408, + 7.394, + 1.055, + 2.18, + 2.027, + 3.434, + 3.328, + 1.207, + 1.568, + 1.609, + 1.995, + 2.747, + 1.247, + 1.338, + 1.059, + 1.05, + 1.092, + 1.046, + 10.766, + 1.039, + 1.037, + 1.101, + 1.101, + 1.107, + 1.104 + ], + "energies": { + "zpve": 0.0807347, + "scf": -193.0049629, + "total": -192.9242282 + } + } + }, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/dscf.log b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/dscf.log new file mode 100644 index 0000000..d822513 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/dscf.log @@ -0,0 +1,422 @@ + + dscf (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:18:24.476 + + + + d s c f - program + + idea & directorship : reinhart ahlrichs + program development : marco haeser + michael baer + dft version : oliver treutler + + + quantum chemistry group + universitaet karlsruhe + germany + + + + *-----------------------------------------------------------------------* + | program will use 1 thread(s) | + *-----------------------------------------------------------------------* + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.04340035 -2.43303953 0.00000000 o 8.000 0 + 2.40289845 1.33092842 0.00000000 c 6.000 0 + -2.44869437 1.25914649 0.00000000 c 6.000 0 + -0.00810063 -0.18289217 0.00000000 c 6.000 0 + 2.09020694 3.35088178 0.00000000 h 1.000 0 + -4.02779836 -0.02916167 0.00000000 h 1.000 0 + 3.51545227 0.83515949 1.64389798 h 1.000 0 + 3.51545227 0.83515949 -1.64389798 h 1.000 0 + -2.56998075 2.47145950 1.64993688 h 1.000 0 + -2.56998075 2.47145950 -1.64993688 h 1.000 0 + + center of nuclear mass : -0.00000000 -0.00000000 0.00000000 + center of nuclear charge: -0.00071328 0.15355432 0.00000000 + + ************************************************************************* + dscf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 34 19 def-TZVP [5s3p1d|11s6p1d] + c 3 34 19 def-TZVP [5s3p1d|11s6p1d] + h 6 8 6 def-TZVP [3s1p|5s1p] + --------------------------------------------------------------------------- + total: 10 184 112 + --------------------------------------------------------------------------- + + total number of primitive shells : 42 + total number of contracted shells : 60 + total number of cartesian basis functions : 116 + total number of SCF-basis functions : 112 + + + integral neglect threshold : 0.29E-10 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + symmetry group of the molecule : c1 + + the group has the following generators : + c1(z) + + 1 symmetry operations found + + there are 1 real representations : a + + maximum number of shells which are related by symmetry : 1 + + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 10 + partition function : becke + partition sharpness : 3 + + + ------------------------ + nuclear repulsion energy : 120.594341137 + ------------------------ + + _________________________________ + | | + | DFTD3 V3.1 Rev 0 | + | S.Grimme, University Bonn | + | June 2014 | + | see standalone version | + | dftd3 -h for options | + |_________________________________| + + Please cite DFT-D3 work done with this code as: + S. Grimme, J. Antony, S. Ehrlich and H. Krieg, + J. Chem. Phys, 132 (2010), 154104. + If used with BJ-damping cite also + S. Grimme, S. Ehrlich and L. Goerigk, + J. Comput. Chem. 32 (2011), 1456-1465 + For DFT-D2 the reference is + S. Grimme, J. Comput. Chem., 27 (2006), 1787-1799 + +C6 coefficients used: + 2 C6 for element 1 +Z= 1 CN= 0.912 C6(AA)= 3.03 +Z= 1 CN= 0.000 C6(AA)= 7.59 + 5 C6 for element 6 +Z= 6 CN= 0.000 C6(AA)= 49.11 +Z= 6 CN= 0.987 C6(AA)= 43.25 +Z= 6 CN= 1.998 C6(AA)= 29.36 +Z= 6 CN= 2.999 C6(AA)= 25.78 +Z= 6 CN= 3.984 C6(AA)= 18.21 + 3 C6 for element 8 +Z= 8 CN= 0.000 C6(AA)= 15.51 +Z= 8 CN= 0.993 C6(AA)= 12.82 +Z= 8 CN= 1.989 C6(AA)= 10.37 + +# XYZ [au] R0(AA) [Ang.] CN C6(AA) C8(AA) C10(AA) [au] + 1 0.04340 -2.43304 0.00000 o 1.241 1.060 12.8 257.6 6366.9 + 2 2.40290 1.33093 0.00000 c 1.455 4.035 18.3 529.2 18748.5 + 3 -2.44869 1.25915 0.00000 c 1.455 4.035 18.3 529.2 18749.0 + 4 -0.00810 -0.18289 0.00000 c 1.455 3.019 25.6 741.5 26269.1 + 5 2.09021 3.35088 0.00000 h 1.091 0.999 3.1 37.4 553.3 + 6 -4.02780 -0.02916 0.00000 h 1.091 1.000 3.1 37.4 553.2 + 7 3.51545 0.83516 1.64390 h 1.091 1.000 3.1 37.4 553.2 + 8 3.51545 0.83516 -1.64390 h 1.091 1.000 3.1 37.4 553.2 + 9 -2.56998 2.47146 1.64994 h 1.091 0.999 3.1 37.4 553.3 + 10 -2.56998 2.47146 -1.64994 h 1.091 0.999 3.1 37.4 553.3 + +molecular C6(AA) [au] = 764.02 + + DFT-D V3 + DF b-p + parameters + s6 : 1.0000 + s8 : 1.6830 + rs6 : 1.1390 + rs18 : 1.0000 + alpha6 : 14.0000 + alpha8 : 16.0000 + k1-k3 : 16.0000 1.3333 -4.0000 + + Edisp /kcal,au: -3.1494 -0.00501893 + + E6 /kcal : -0.9162 + E8 /kcal : -2.2332 + % E8 : 70.91 + nuclear repulsion energy = 120.594341137 + DFT-D3 Energy contribution = -0.005018931 + nuclear repulsion + dispersion correction = 120.589322206 + + + ----------------- + -S,T+V- integrals + ----------------- + + 1e-integrals will be neglected if expon. factor < 0.288100E-11 + + Difference densities algorithm switched on. + The maximal number of linear combinations of + difference densities is 20 . + + DIIS switched on: error vector is FDS-SDF + Max. Iterations for DIIS is : 4 + DIIS matrix (see manual) + Scaling factor of diagonals : 1.200 + threshold for scaling factor : 0.000 + + scf convergence criterion : increment of total energy < .1000000D-06 + and increment of one-electron energy < .1000000D-03 + + MOs are in ASCII format ! + + + mo occupation : + irrep mo's occupied + a 112 16 + + number of basis functions : 112 + number of occupied orbitals : 16 + + + reading orbital data $scfmo from file mos + orbital characterization : expanded + virtual MOs provided and orthogonalized by Cholesky decomposition + + automatic virtual orbital shift switched on + shift if e(lumo)-e(homo) < 0.10000000 + + + DSCF restart information will be dumped onto file mos + + Overall gridpoints after grid construction = 12185 + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 1 -192.29372813940 -494.75874322 181.87569287 0.000D+00 0.287D-10 + Exc = -26.721881363698 N = 32.002584624 + max. resid. norm for Fia-block= 3.728D-01 for orbital 8a + max. resid. fock norm = 1.227D+01 for orbital 75a + Delta Eig. = 870.9038860943 eV + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 2 -193.04589993537 -499.77769458 186.14247243 0.137D+01 0.202D-10 + Exc = -27.000695043509 N = 32.001771983 + Norm of current diis error: 1.7490 + max. resid. norm for Fia-block= 1.505D-01 for orbital 16a + max. resid. fock norm = 3.161D-01 for orbital 99a + Delta Eig. = 193.1107856451 eV + + current damping : 0.150 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 3 -193.19817618491 -500.51578903 186.72829064 0.669D+00 0.169D-10 + Exc = -27.297609549415 N = 32.001661927 + Norm of current diis error: 0.72489 + max. resid. norm for Fia-block= 5.937D-02 for orbital 15a + max. resid. fock norm = 6.099D-02 for orbital 16a + Delta Eig. = 49.9499767069 eV + + current damping : 0.200 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 4 -193.22274837497 -498.75040051 184.93832993 0.847D+00 0.135D-10 + Exc = -27.050501405271 N = 32.001617337 + Norm of current diis error: 0.42508 + max. resid. norm for Fia-block= 2.353D-02 for orbital 15a + max. resid. fock norm = 2.979D-02 for orbital 91a + Delta Eig. = 3.4742688100 eV + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 5 -193.23564133922 -499.97756705 186.15260351 0.950D-01 0.137D-10 + Exc = -27.180097912811 N = 32.001620773 + Norm of current diis error: 0.66339E-01 + max. resid. norm for Fia-block= 3.893D-03 for orbital 8a + max. resid. fock norm = 6.203D-03 for orbital 8a + mo-orthogonalization: Cholesky decomposition + Delta Eig. = 1.2057965971 eV + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 6 -193.23594867389 -499.71496743 185.88969655 0.193D-01 0.131D-10 + Exc = -27.160531263094 N = 32.001617033 + Norm of current diis error: 0.16367E-01 + max. resid. norm for Fia-block= 1.080D-03 for orbital 16a + max. resid. fock norm = 2.496D-03 for orbital 111a + Delta Eig. = 0.0877877295 eV + + current damping : 0.350 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 7 -193.23596716585 -499.75469533 185.92940596 0.345D-02 0.128D-10 + Exc = -27.163504787884 N = 32.001617866 + Norm of current diis error: 0.57536E-02 + max. resid. norm for Fia-block= 2.956D-04 for orbital 6a + max. resid. fock norm = 8.715D-04 for orbital 111a + Delta Eig. = 0.0424942420 eV + + current damping : 0.200 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 8 -193.23596906936 -499.76218306 185.93689179 0.104D-02 0.126D-10 + Exc = -27.164271605118 N = 32.001617145 + Norm of current diis error: 0.12506E-02 + max. resid. norm for Fia-block= 1.609D-04 for orbital 15a + max. resid. fock norm = 2.123D-04 for orbital 13a + Delta Eig. = 0.0096885711 eV + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 9 -193.23596880104 -499.76329674 185.93800574 0.426D-03 0.124D-10 + Exc = -27.164573197448 N = 32.001617388 + Norm of current diis error: 0.23770E-02 + max. resid. norm for Fia-block= 7.884D-05 for orbital 15a + max. resid. fock norm = 9.029D-05 for orbital 17a + Delta Eig. = 0.0071682814 eV + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 10 -193.23596915118 -499.76233479 185.93704343 0.906D-04 0.121D-10 + Exc = -27.164347902922 N = 32.001617315 + Norm of current diis error: 0.69849E-03 + max. resid. norm for Fia-block= 3.126D-05 for orbital 15a + max. resid. fock norm = 3.955D-05 for orbital 13a + mo-orthogonalization: Cholesky decomposition + Delta Eig. = 0.0018524315 eV + + ENERGY CONVERGED ! + + Evaluating v_xc on big grid + Overall gridpoints after grid construction = 46350 + + current damping : 0.350 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 11 -193.23564839525 -499.76214817 185.93717756 0.244D-04 0.118D-10 + Exc = -27.163971923866 N = 32.000005445 + max. resid. norm for Fia-block= 9.105D-06 for orbital 15a + max. resid. fock norm = 1.285D-05 for orbital 13a + + convergence criteria satisfied after 11 iterations + + + ************************************************************************* + dscf + ************************************************************************* + + + ------------------------------------------ + | total energy = -193.23564839525 | + ------------------------------------------ + : kinetic energy = 192.64177839562 : + : potential energy = -385.87742679087 : + : virial theorem = 1.99692670579 : + : wavefunction norm = 1.00000000000 : + .......................................... + + + : there is no data group $energy + + + : $end is missing + + + orbitals $scfmo will be written to file mos + + irrep 12a 13a 14a 15a 16a + eigenvalues H -0.37054 -0.35780 -0.34160 -0.31956 -0.20993 + eV -10.0830 -9.7363 -9.2955 -8.6958 -5.7126 + occupation 2.0000 2.0000 2.0000 2.0000 2.0000 + + irrep 17a 18a 19a 20a 21a + eigenvalues H -0.05640 0.01758 0.06564 0.08278 0.08361 + eV -1.5347 0.4783 1.7861 2.2526 2.2752 + + + + + ============================================================================== + electrostatic moments + ============================================================================== + + reference point for electrostatic moments: 0.00000 0.00000 0.00000 + + + nuc elec -> total + ------------------------------------------------------------------------------ + charge + ------------------------------------------------------------------------------ + 32.000000 -32.000000 0.000000 + + ------------------------------------------------------------------------------ + dipole moment + ------------------------------------------------------------------------------ + x -0.022825 0.024067 0.001242 + y 4.913738 -3.815618 1.098120 + z 0.000000 -0.000000 -0.000000 + + | dipole moment | = 1.0981 a.u. = 2.7911 debye + + ------------------------------------------------------------------------------ + quadrupole moment + ------------------------------------------------------------------------------ + xx 129.154149 -146.718374 -17.564225 + yy 92.539536 -113.844634 -21.305098 + zz 10.849385 -28.814861 -17.965477 + xy 0.143270 -0.170054 -0.026784 + xz 0.000000 0.000000 0.000000 + yz 0.000000 -0.000000 -0.000000 + + 1/3 trace= -18.944933 + anisotropy= 3.557563 + + ============================================================================== + +HOMO-LUMO Separation + HOMO : -0.20993098 H = -5.71252 eV + LUMO : -0.05639881 H = -1.53469 eV + HOMO-LUMO gap: 0.15353216 H = +4.17783 eV + + ============================================================================== + + + ------------------------------------------------------------------------ + total cpu-time : 9.25 seconds + total wall-time : 11.46 seconds + ------------------------------------------------------------------------ + + **** dscf : all done **** + + + 2023-01-25 00:18:35.889 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/ref_output.json new file mode 100644 index 0000000..d0829fe --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/ref_output.json @@ -0,0 +1,364 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "ScfOutput", + "@version": "1.3.0", + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": null, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": { + "@module": "turbomoleio.output.data", + "@class": "DispersionCorrectionData", + "@version": "1.3.0", + "correction": "D3", + "en_corr": -0.005018931 + } + }, + "scf": { + "@module": "turbomoleio.output.data", + "@class": "ScfData", + "@version": "1.3.0", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "ScfIterationData", + "@version": "1.3.0", + "energies": [ + -192.2937281394, + -193.04589993537, + -193.19817618491, + -193.22274837497, + -193.23564133922, + -193.23594867389, + -193.23596716585, + -193.23596906936, + -193.23596880104, + -193.23596915118, + -193.23564839525 + ], + "first_index": 1, + "n_steps": 11, + "dampings": [ + 0.3, + 0.25, + 0.15, + 0.2, + 0.25, + 0.3, + 0.35, + 0.2, + 0.25, + 0.3, + 0.35 + ], + "converged": true + }, + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": true, + "virtual_orbital_shift_limit": 0.1, + "orbital_characterization": "expanded", + "restart_file": "mos", + "n_occupied_orbitals": 16 + }, + "energies": { + "@module": "turbomoleio.output.data", + "@class": "ScfEnergiesData", + "@version": "1.3.0", + "total_energy": -193.23564839525, + "kinetic_energy": 192.64177839562, + "potential_energy": -385.87742679087, + "virial_theorem": 1.99692670579, + "wavefunction_norm": 1.0, + "coulomb_energy": null, + "xc_energy": null, + "ts_energy": null, + "free_energy": null, + "sigma0_energy": null + }, + "electrostatic": { + "@module": "turbomoleio.output.data", + "@class": "ElectrostaticMomentsData", + "@version": "1.3.0", + "charge": 0.0, + "unrestricted_electrons": null, + "dipole_vector": [ + 0.001242, + 1.09812, + -0.0 + ], + "dipole_norm": 1.0981, + "quadrupole_tensor": [ + [ + -17.564225, + -0.026784, + 0.0 + ], + [ + -0.026784, + -21.305098, + -0.0 + ], + [ + 0.0, + -0.0, + -17.965477 + ] + ], + "quadrupole_trace": -56.834799, + "quadrupole_anisotropy": 3.557563 + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + -0.0, + -0.0, + 0.0 + ], + "center_of_charge": [ + -0.00071328, + 0.15355432, + 0.0 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "O", + "species": [ + { + "element": "O", + "occu": 1 + } + ], + "xyz": [ + 0.022966476165214012, + -1.2875090725021459, + 0.0 + ], + "properties": {} + }, + { + "name": "C", + "species": [ + { + "element": "C", + "occu": 1 + } + ], + "xyz": [ + 1.2715590998541417, + 0.7042969892071365, + 0.0 + ], + "properties": {} + }, + { + "name": "C", + "species": [ + { + "element": "C", + "occu": 1 + } + ], + "xyz": [ + -1.2957932570704787, + 0.6663116276965021, + 0.0 + ], + "properties": {} + }, + { + "name": "C", + "species": [ + { + "element": "C", + "occu": 1 + } + ], + "xyz": [ + -0.004286668789957168, + -0.09678236841659732, + 0.0 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 1.106089878719294, + 1.7732102744060798, + 0.0 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -2.1314191022244775, + -0.015431691195873688, + 0.0 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 1.86029722730122, + 0.4419473695773719, + 0.8699133480654756 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 1.86029722730122, + 0.4419473695773719, + -0.8699133480654756 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -1.3599752453594, + 1.3078400450697227, + 0.8731089963243978 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -1.3599752453594, + 1.3078400450697227, + -0.8731089963243978 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "o": "def-TZVP", + "c": "def-TZVP", + "h": "def-TZVP" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 112, + "number_scf_aux_basis_func": null + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:24.476000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:35.889000" + }, + "cpu_time": 9.25, + "wall_time": 11.46 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "dscf" + }, + "cosmo": null, + "spin": { + "@module": "turbomoleio.output.data", + "@class": "SpinData", + "@version": "1.3.0", + "unrestricted": false, + "s2": null + }, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 2.9e-11, + "thize": 1e-05, + "thime": 5 + }, + "smearing": null, + "symmetry": { + "@module": "turbomoleio.output.data", + "@class": "SymmetryData", + "@version": "1.3.0", + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + }, + "periodicity": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/ref_parser.json new file mode 100644 index 0000000..d64d341 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/ref_parser.json @@ -0,0 +1,265 @@ +{ + "all_done": true, + "header": { + "executable": "dscf", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:24.476000" + } + }, + "centers": { + "center_of_mass": [ + -0.0, + -0.0, + 0.0 + ], + "center_of_charge": [ + -0.00071328, + 0.15355432, + 0.0 + ] + }, + "coordinates": { + "coords": [ + [ + 0.04340035, + -2.43303953, + 0.0 + ], + [ + 2.40289845, + 1.33092842, + 0.0 + ], + [ + -2.44869437, + 1.25914649, + 0.0 + ], + [ + -0.00810063, + -0.18289217, + 0.0 + ], + [ + 2.09020694, + 3.35088178, + 0.0 + ], + [ + -4.02779836, + -0.02916167, + 0.0 + ], + [ + 3.51545227, + 0.83515949, + 1.64389798 + ], + [ + 3.51545227, + 0.83515949, + -1.64389798 + ], + [ + -2.56998075, + 2.4714595, + 1.64993688 + ], + [ + -2.56998075, + 2.4714595, + -1.64993688 + ] + ], + "species": [ + "o", + "c", + "c", + "c", + "h", + "h", + "h", + "h", + "h", + "h" + ], + "charges": [ + 8.0, + 6.0, + 6.0, + 6.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "o": "def-TZVP", + "c": "def-TZVP", + "h": "def-TZVP" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 112, + "number_scf_aux_basis_func": null + }, + "symmetry": { + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": { + "correction": "D3", + "en_corr": -0.005018931 + }, + "pre_scf_run": { + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": true, + "virtual_orbital_shift_limit": 0.1, + "orbital_characterization": "expanded", + "restart_file": "mos", + "n_occupied_orbitals": 16 + }, + "scf_iterations": { + "energies": [ + -192.2937281394, + -193.04589993537, + -193.19817618491, + -193.22274837497, + -193.23564133922, + -193.23594867389, + -193.23596716585, + -193.23596906936, + -193.23596880104, + -193.23596915118, + -193.23564839525 + ], + "first_index": 1, + "n_steps": 11, + "dampings": [ + 0.3, + 0.25, + 0.15, + 0.2, + 0.25, + 0.3, + 0.35, + 0.2, + 0.25, + 0.3, + 0.35 + ], + "converged": true + }, + "scf_energies": { + "total_energy": -193.23564839525, + "kinetic_energy": 192.64177839562, + "potential_energy": -385.87742679087, + "virial_theorem": 1.99692670579, + "wavefunction_norm": 1.0 + }, + "cosmo_results": null, + "electrostatic_moments": { + "unrestricted_electrons": null, + "charge": 0.0, + "dipole": { + "norm": 1.0981, + "moment": [ + 0.001242, + 1.09812, + -0.0 + ] + }, + "quadrupole": { + "trace": -56.834799, + "anisotropy": 3.557563, + "moment": [ + [ + -17.564225, + -0.026784, + 0.0 + ], + [ + -0.026784, + -21.305098, + -0.0 + ], + [ + 0.0, + -0.0, + -17.965477 + ] + ] + } + }, + "timings": { + "cpu_time": 9.25, + "wall_time": 11.46, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:35.889000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 2.9e-11, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": null, + "escf_iterations": null, + "escf_gs_total_en": null, + "escf_excitations": null, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/dscf.log b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/dscf.log new file mode 100644 index 0000000..171e5fe --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/dscf.log @@ -0,0 +1,337 @@ + + dscf (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:18:40.142 + + + + d s c f - program + + idea & directorship : reinhart ahlrichs + program development : marco haeser + michael baer + dft version : oliver treutler + + + quantum chemistry group + universitaet karlsruhe + germany + + + + *-----------------------------------------------------------------------* + | program will use 1 thread(s) | + *-----------------------------------------------------------------------* + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 -0.72557892 o 8.000 0 + 1.41713421 0.00000000 0.36278946 h 1.000 0 + -1.41713421 0.00000000 0.36278946 h 1.000 0 + + center of nuclear mass : 0.00000000 0.00000000 -0.60378908 + center of nuclear charge: 0.00000000 0.00000000 -0.50790525 + + ************************************************************************* + dscf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 2 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 3 32 18 + --------------------------------------------------------------------------- + + total number of primitive shells : 16 + total number of contracted shells : 10 + total number of cartesian basis functions : 19 + total number of SCF-basis functions : 18 + + + integral neglect threshold : 0.18E-09 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + symmetry group of the molecule : c2v + + the group has the following generators : + c2(z) + mirror plane sigma(xz) + + 4 symmetry operations found + + there are 4 real representations : a1 a2 b1 b2 + + maximum number of shells which are related by symmetry : 2 + + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 2 + partition function : becke + partition sharpness : 3 + + + ------------------------ + nuclear repulsion energy : 9.30715477358 + ------------------------ + + + ----------------- + -S,T+V- integrals + ----------------- + + 1e-integrals will be neglected if expon. factor < 0.175893E-10 + + Difference densities algorithm switched on. + The maximal number of linear combinations of + difference densities is 20 . + + DIIS switched on: error vector is FDS-SDF + Max. Iterations for DIIS is : 4 + DIIS matrix (see manual) + Scaling factor of diagonals : 1.200 + threshold for scaling factor : 0.000 + + scf convergence criterion : increment of total energy < .1000000D-06 + and increment of one-electron energy < .1000000D-03 + + MOs are in ASCII format ! + + + mo occupation : + irrep mo's occupied + a1 9 3 + a2 1 0 + b1 5 1 + b2 3 1 + + number of basis functions : 18 + number of occupied orbitals : 5 + + + reading orbital data $scfmo from file mos + orbital characterization : expanded + virtual MOs provided and orthogonalized by Cholesky decomposition + + automatic virtual orbital shift switched on + shift if e(lumo)-e(homo) < 0.10000000 + + + DSCF restart information will be dumped onto file mos + + Overall gridpoints after grid construction = 1098 + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 1 -76.143808666909 -124.43866883 38.987705388 0.000D+00 0.175D-09 + Exc = -9.503661308938 N = 9.9990627195 + max. resid. norm for Fia-block= 2.533D-01 for orbital 3a1 + max. resid. fock norm = 1.169D+00 for orbital 5a1 + Delta Eig. = 47.0795604802 eV + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 2 -76.317603169266 -122.45259042 36.827832480 0.608D+00 0.116D-09 + Exc = -9.237016726629 N = 9.9994270821 + Norm of current diis error: 0.35138 + max. resid. norm for Fia-block= 8.467D-02 for orbital 1b1 + max. resid. fock norm = 9.886D-02 for orbital 4a1 + Delta Eig. = 10.1431637969 eV + + current damping : 0.200 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 3 -76.337404295078 -123.68673977 38.042180702 0.298D+00 0.956D-10 + Exc = -9.425448034189 N = 9.9992826591 + Norm of current diis error: 0.17642 + max. resid. norm for Fia-block= 2.820D-02 for orbital 3a1 + max. resid. fock norm = 2.848D-02 for orbital 3a1 + Delta Eig. = 4.0440013207 eV + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 4 -76.342251381087 -123.12626297 37.476856814 0.705D-01 0.858D-10 + Exc = -9.353129874312 N = 9.9993443737 + Norm of current diis error: 0.42189E-01 + max. resid. norm for Fia-block= 5.383D-03 for orbital 2a1 + max. resid. fock norm = 5.459D-03 for orbital 2a1 + Delta Eig. = 0.2972737513 eV + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 5 -76.342476694949 -123.20950220 37.559870734 0.875D-02 0.815D-10 + Exc = -9.364184193806 N = 9.9993390173 + Norm of current diis error: 0.73937E-02 + max. resid. norm for Fia-block= 9.405D-04 for orbital 1b1 + max. resid. fock norm = 9.405D-04 for orbital 1b1 + mo-orthogonalization: Cholesky decomposition + Delta Eig. = 0.0566919803 eV + + current damping : 0.150 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 6 -76.342484142411 -123.22573147 37.576092557 0.368D-03 0.774D-10 + Exc = -9.366413451126 N = 9.9993373864 + Norm of current diis error: 0.10579E-02 + max. resid. norm for Fia-block= 1.598D-04 for orbital 2a1 + max. resid. fock norm = 1.670D-04 for orbital 4a1 + Delta Eig. = 0.0152574062 eV + + current damping : 0.100 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 7 -76.342484303361 -123.22796150 37.578322418 0.119D-03 0.752D-10 + Exc = -9.366746448968 N = 9.9993372713 + Norm of current diis error: 0.13713E-03 + max. resid. norm for Fia-block= 2.132D-05 for orbital 1b1 + max. resid. fock norm = 2.592D-05 for orbital 3a1 + Delta Eig. = 0.0020598535 eV + + ENERGY CONVERGED ! + + Evaluating v_xc on big grid + Overall gridpoints after grid construction = 3891 + + current damping : 0.150 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 8 -76.342762152503 -123.22820928 37.578292351 0.892D-05 0.732D-10 + Exc = -9.367056564507 N = 9.9999983776 + max. resid. norm for Fia-block= 3.156D-06 for orbital 2a1 + max. resid. fock norm = 3.998D-06 for orbital 2a1 + + convergence criteria satisfied after 8 iterations + + + ************************************************************************* + dscf + ************************************************************************* + + + ------------------------------------------ + | total energy = -76.34276215250 | + ------------------------------------------ + : kinetic energy = 75.98646113665 : + : potential energy = -152.32922328915 : + : virial theorem = 1.99533287759 : + : wavefunction norm = 1.00000000000 : + .......................................... + + + : there is no data group $energy + + + : $end is missing + + + orbitals $scfmo will be written to file mos + + irrep 1a1 2a1 3a1 4a1 5a1 + eigenvalues H -18.75057 -0.90865 -0.30996 0.03391 0.63293 + eV -510.2329 -24.7259 -8.4345 0.9226 17.2231 + occupation 2.0000 2.0000 2.0000 + + irrep 6a1 7a1 8a1 9a1 + eigenvalues H 0.87619 1.10900 2.47780 2.86046 + eV 23.8426 30.1776 67.4250 77.8377 + + irrep 1a2 + eigenvalues H 2.49480 + eV 67.8875 + + irrep 1b1 2b1 3b1 4b1 5b1 + eigenvalues H -0.47816 0.11369 0.54412 1.01988 3.00641 + eV -13.0114 3.0936 14.8065 27.7526 81.8091 + occupation 2.0000 + + irrep 1b2 2b2 3b2 + eigenvalues H -0.23517 0.86116 2.52749 + eV -6.3995 23.4335 68.7769 + occupation 2.0000 + + + + + ============================================================================== + electrostatic moments + ============================================================================== + + reference point for electrostatic moments: 0.00000 0.00000 0.00000 + + + nuc elec -> total + ------------------------------------------------------------------------------ + charge + ------------------------------------------------------------------------------ + 10.000000 -10.000000 -0.000000 + + ------------------------------------------------------------------------------ + dipole moment + ------------------------------------------------------------------------------ + x 0.000000 0.000000 0.000000 + y 0.000000 0.000000 0.000000 + z -5.079052 5.912637 0.833584 + + | dipole moment | = 0.8336 a.u. = 2.1188 debye + + ------------------------------------------------------------------------------ + quadrupole moment + ------------------------------------------------------------------------------ + xx 4.016539 -7.255366 -3.238827 + yy 0.000000 -5.264554 -5.264554 + zz 4.474951 -9.815018 -5.340067 + xy 0.000000 0.000000 0.000000 + xz 0.000000 -0.000000 -0.000000 + yz 0.000000 0.000000 0.000000 + + 1/3 trace= -4.614483 + anisotropy= 2.064519 + + ============================================================================== + +HOMO-LUMO Separation + HOMO : -0.23517482 H = -6.39944 eV + LUMO : 0.03390547 H = +0.92262 eV + HOMO-LUMO gap: 0.26908029 H = +7.32205 eV + + ============================================================================== + + + ------------------------------------------------------------------------ + total cpu-time : 0.14 seconds + total wall-time : 1.19 seconds + ------------------------------------------------------------------------ + + **** dscf : all done **** + + + 2023-01-25 00:18:41.277 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/ref_output.json new file mode 100644 index 0000000..886c458 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/ref_output.json @@ -0,0 +1,249 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "ScfOutput", + "@version": "1.3.0", + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": null, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "scf": { + "@module": "turbomoleio.output.data", + "@class": "ScfData", + "@version": "1.3.0", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "ScfIterationData", + "@version": "1.3.0", + "energies": [ + -76.143808666909, + -76.317603169266, + -76.337404295078, + -76.342251381087, + -76.342476694949, + -76.342484142411, + -76.342484303361, + -76.342762152503 + ], + "first_index": 1, + "n_steps": 8, + "dampings": [ + 0.3, + 0.25, + 0.2, + 0.25, + 0.3, + 0.15, + 0.1, + 0.15 + ], + "converged": true + }, + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": true, + "virtual_orbital_shift_limit": 0.1, + "orbital_characterization": "expanded", + "restart_file": "mos", + "n_occupied_orbitals": 5 + }, + "energies": { + "@module": "turbomoleio.output.data", + "@class": "ScfEnergiesData", + "@version": "1.3.0", + "total_energy": -76.3427621525, + "kinetic_energy": 75.98646113665, + "potential_energy": -152.32922328915, + "virial_theorem": 1.99533287759, + "wavefunction_norm": 1.0, + "coulomb_energy": null, + "xc_energy": null, + "ts_energy": null, + "free_energy": null, + "sigma0_energy": null + }, + "electrostatic": { + "@module": "turbomoleio.output.data", + "@class": "ElectrostaticMomentsData", + "@version": "1.3.0", + "charge": -0.0, + "unrestricted_electrons": null, + "dipole_vector": [ + 0.0, + 0.0, + 0.833584 + ], + "dipole_norm": 0.8336, + "quadrupole_tensor": [ + [ + -3.238827, + 0.0, + -0.0 + ], + [ + 0.0, + -5.264554, + 0.0 + ], + [ + -0.0, + 0.0, + -5.340067 + ] + ], + "quadrupole_trace": -13.843449, + "quadrupole_anisotropy": 2.064519 + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790525 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "O", + "species": [ + { + "element": "O", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + -0.38395982917561094 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 0.7499151287230262, + 0.0, + 0.19197991458780547 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -0.7499151287230262, + 0.0, + 0.19197991458780547 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": null + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:40.142000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:41.277000" + }, + "cpu_time": 0.14, + "wall_time": 1.19 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "dscf" + }, + "cosmo": null, + "spin": { + "@module": "turbomoleio.output.data", + "@class": "SpinData", + "@version": "1.3.0", + "unrestricted": false, + "s2": null + }, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 1.8e-10, + "thize": 1e-05, + "thime": 5 + }, + "smearing": null, + "symmetry": { + "@module": "turbomoleio.output.data", + "@class": "SymmetryData", + "@version": "1.3.0", + "symbol": "c2v", + "n_reps": 4, + "reps": [ + "a1", + "a2", + "b1", + "b2" + ] + }, + "periodicity": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/ref_parser.json new file mode 100644 index 0000000..04d2cb7 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/ref_parser.json @@ -0,0 +1,202 @@ +{ + "all_done": true, + "header": { + "executable": "dscf", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:40.142000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790525 + ] + }, + "coordinates": { + "coords": [ + [ + 0.0, + 0.0, + -0.72557892 + ], + [ + 1.41713421, + 0.0, + 0.36278946 + ], + [ + -1.41713421, + 0.0, + 0.36278946 + ] + ], + "species": [ + "o", + "h", + "h" + ], + "charges": [ + 8.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": null + }, + "symmetry": { + "symbol": "c2v", + "n_reps": 4, + "reps": [ + "a1", + "a2", + "b1", + "b2" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": null, + "pre_scf_run": { + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": true, + "virtual_orbital_shift_limit": 0.1, + "orbital_characterization": "expanded", + "restart_file": "mos", + "n_occupied_orbitals": 5 + }, + "scf_iterations": { + "energies": [ + -76.143808666909, + -76.317603169266, + -76.337404295078, + -76.342251381087, + -76.342476694949, + -76.342484142411, + -76.342484303361, + -76.342762152503 + ], + "first_index": 1, + "n_steps": 8, + "dampings": [ + 0.3, + 0.25, + 0.2, + 0.25, + 0.3, + 0.15, + 0.1, + 0.15 + ], + "converged": true + }, + "scf_energies": { + "total_energy": -76.3427621525, + "kinetic_energy": 75.98646113665, + "potential_energy": -152.32922328915, + "virial_theorem": 1.99533287759, + "wavefunction_norm": 1.0 + }, + "cosmo_results": null, + "electrostatic_moments": { + "unrestricted_electrons": null, + "charge": -0.0, + "dipole": { + "norm": 0.8336, + "moment": [ + 0.0, + 0.0, + 0.833584 + ] + }, + "quadrupole": { + "trace": -13.843449, + "anisotropy": 2.064519, + "moment": [ + [ + -3.238827, + 0.0, + -0.0 + ], + [ + 0.0, + -5.264554, + 0.0 + ], + [ + -0.0, + 0.0, + -5.340067 + ] + ] + } + }, + "timings": { + "cpu_time": 0.14, + "wall_time": 1.19, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:41.277000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 1.8e-10, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": null, + "escf_iterations": null, + "escf_gs_total_en": null, + "escf_excitations": null, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/dscf.log b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/dscf.log new file mode 100644 index 0000000..e0d1d23 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/dscf.log @@ -0,0 +1,393 @@ + + dscf (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:18:19.500 + + + + d s c f - program + + idea & directorship : reinhart ahlrichs + program development : marco haeser + michael baer + dft version : oliver treutler + + + quantum chemistry group + universitaet karlsruhe + germany + + + + *-----------------------------------------------------------------------* + | program will use 1 thread(s) | + *-----------------------------------------------------------------------* + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 -0.72557892 o 8.000 0 + 1.41713421 0.00000000 0.36278946 h 1.000 0 + -1.41713421 0.00000000 0.36278946 h 1.000 0 + + center of nuclear mass : 0.00000000 0.00000000 -0.60378908 + center of nuclear charge: 0.00000000 0.00000000 -0.50790525 + + ************************************************************************* + dscf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 2 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 3 32 18 + --------------------------------------------------------------------------- + + total number of primitive shells : 16 + total number of contracted shells : 10 + total number of cartesian basis functions : 19 + total number of SCF-basis functions : 18 + + + integral neglect threshold : 0.18E-09 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + symmetry group of the molecule : c1 + + the group has the following generators : + c1(z) + + 1 symmetry operations found + + there are 1 real representations : a + + maximum number of shells which are related by symmetry : 1 + + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 3 + partition function : becke + partition sharpness : 3 + + + ------------------------ + nuclear repulsion energy : 9.30715477358 + ------------------------ + + + ----------------- + -S,T+V- integrals + ----------------- + + 1e-integrals will be neglected if expon. factor < 0.175893E-10 + + Difference densities algorithm switched on. + The maximal number of linear combinations of + difference densities is 20 . + + DIIS switched on: error vector is FDS-SDF + Max. Iterations for DIIS is : 4 + DIIS matrix (see manual) + Scaling factor of diagonals : 1.200 + threshold for scaling factor : 0.000 + + scf convergence criterion : increment of total energy < .1000000D-06 + and increment of one-electron energy < .1000000D-03 + + MOs are in ASCII format ! + + + mo occupation : + irrep mo's occupied + a 18 5 + + number of basis functions : 18 + number of occupied orbitals : 5 + + + reading orbital data $uhfmo_alpha from file alpha + orbital characterization : expanded + + reading orbital data $uhfmo_beta from file beta + orbital characterization : expanded + virtual MOs provided and orthogonalized by Cholesky decomposition + virtual MOs provided and orthogonalized by Cholesky decomposition + + UHF mode switched on ! + + closed shell shift switched on + all occupied orbitals are shifted by 0.05000 + + + DSCF restart information will be dumped onto file alpha + + Overall gridpoints after grid construction = 3534 + + current damping : 1.000 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 1 -75.709149222343 -117.09679488 32.080490887 0.000D+00 0.175D-09 + Na = 4.9995313597 Nb = 3.9998793207 + Exc = -8.787711297908 N = 8.9994106804 + max. resid. norm for Fia-block= 2.634D-01 for orbital 1a beta + max. resid. fock norm = 1.108D+00 for orbital 9a beta + Delta Eig. = 32.3297071545 eV + + current damping : 0.950 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 2 -75.816081492466 -117.73251083 32.609274567 0.251D+00 0.111D-09 + Na = 4.9995296196 Nb = 3.9998854701 + Exc = -8.886876110109 N = 8.9994150898 + Norm of current diis error: 0.39063 + max. resid. norm for Fia-block= 1.423D-01 for orbital 1a beta + max. resid. fock norm = 1.513D-01 for orbital 6a alpha + Delta Eig. = 15.7769639018 eV + + current damping : 0.800 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 3 -75.857212061739 -117.87977404 32.715407205 0.852D-01 0.798D-10 + Na = 4.9995194543 Nb = 3.9998865583 + Exc = -8.920115837118 N = 8.9994060126 + Norm of current diis error: 0.21374 + max. resid. norm for Fia-block= 7.979D-02 for orbital 3a beta + max. resid. fock norm = 8.121D-02 for orbital 6a alpha + Delta Eig. = 8.1568076473 eV + + current damping : 0.650 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 4 -75.874157090013 -118.00279397 32.821482106 0.240D-01 0.652D-10 + Na = 4.9995055824 Nb = 3.9998842701 + Exc = -8.949606521034 N = 8.9993898525 + Norm of current diis error: 0.10470 + max. resid. norm for Fia-block= 4.111D-02 for orbital 3a beta + max. resid. fock norm = 4.111D-02 for orbital 3a beta + Delta Eig. = 3.8632431380 eV + + current damping : 0.500 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 5 -75.879194045962 -118.06323641 32.876887589 0.533D-02 0.578D-10 + Na = 4.9994965287 Nb = 3.9998828259 + Exc = -8.966289064502 N = 8.9993793546 + Norm of current diis error: 0.44649E-01 + max. resid. norm for Fia-block= 1.817D-02 for orbital 3a beta + max. resid. fock norm = 1.817D-02 for orbital 3a beta + mo-orthogonalization: Cholesky decomposition + Delta Eig. = 1.6437129556 eV + + current damping : 0.350 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 6 -75.880260802113 -118.09662398 32.909208403 0.120D-02 0.539D-10 + Na = 4.9994914995 Nb = 3.9998820931 + Exc = -8.975287379639 N = 8.9993735925 + Norm of current diis error: 0.15732E-01 + max. resid. norm for Fia-block= 6.684D-03 for orbital 3a beta + max. resid. fock norm = 6.684D-03 for orbital 3a beta + Delta Eig. = 0.5952940669 eV + + current damping : 0.200 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 7 -75.880414311673 -118.10215102 32.914581937 0.696D-03 0.519D-10 + Na = 4.9994897077 Nb = 3.9998821182 + Exc = -8.977840271640 N = 8.9993718259 + Norm of current diis error: 0.46809E-02 + max. resid. norm for Fia-block= 2.042D-03 for orbital 3a alpha + max. resid. fock norm = 2.042D-03 for orbital 3a alpha + Delta Eig. = 0.1742466019 eV + + current damping : 0.100 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 8 -75.880428556505 -118.11063937 32.923056043 0.174D-03 0.507D-10 + Na = 4.9994887186 Nb = 3.9998819863 + Exc = -8.979642722323 N = 8.9993707048 + Norm of current diis error: 0.10859E-02 + max. resid. norm for Fia-block= 5.246D-04 for orbital 3a beta + max. resid. fock norm = 5.513D-04 for orbital 9a beta + Delta Eig. = 0.0538966289 eV + + current damping : 0.150 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 9 -75.880429245802 -118.10668070 32.919096683 0.958D-04 0.502D-10 + Na = 4.9994887929 Nb = 3.9998821627 + Exc = -8.979203059403 N = 8.9993709555 + Norm of current diis error: 0.64524E-03 + max. resid. norm for Fia-block= 1.707D-04 for orbital 3a alpha + max. resid. fock norm = 1.707D-04 for orbital 3a alpha + Delta Eig. = 0.0093636153 eV + + current damping : 0.200 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 10 -75.880429377768 -118.10884355 32.921259400 0.113D-04 0.498D-10 + Na = 4.9994886540 Nb = 3.9998821159 + Exc = -8.979531368263 N = 8.9993707700 + Norm of current diis error: 0.52286E-04 + max. resid. norm for Fia-block= 2.360D-05 for orbital 3a alpha + max. resid. fock norm = 2.360D-05 for orbital 3a alpha + mo-orthogonalization: Cholesky decomposition + Delta Eig. = 0.0008385966 eV + + ENERGY CONVERGED ! + + Evaluating v_xc on big grid + Overall gridpoints after grid construction = 13740 + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 11 -75.880560676540 -118.10886446 32.921149013 0.924D-04 0.500D-10 + Na = 4.9999989013 Nb = 3.9999995964 + Exc = -8.979668978887 N = 8.9999984977 + max. resid. norm for Fia-block= 8.321D-06 for orbital 3a beta + max. resid. fock norm = 8.321D-06 for orbital 3a beta + + convergence criteria satisfied after 11 iterations + + + ************************************************************************* + dscf + ************************************************************************* + + + ------------------------------------------ + | total energy = -75.88056067654 | + ------------------------------------------ + : kinetic energy = 75.74900599616 : + : potential energy = -151.62956667270 : + : virial theorem = 1.99826629272 : + : wavefunction norm = 1.00000000000 : + .......................................... + + + : there is no data group $energy + + + : $end is missing + + + orbitals $uhfmo_beta will be written to file beta + + orbitals $uhfmo_alpha will be written to file alpha + + alpha: + + irrep 1a 2a 3a 4a 5a + eigenvalues H -19.33294 -1.44767 -0.96936 -0.82863 -0.81523 + eV -526.0802 -39.3934 -26.3779 -22.5484 -22.1838 + occupation 1.0000 1.0000 1.0000 1.0000 1.0000 + + irrep 6a 7a 8a 9a 10a + eigenvalues H -0.29906 -0.22211 0.16374 0.22168 0.37168 + eV -8.1378 -6.0439 4.4555 6.0323 10.1140 + + beta: + + irrep 1a 2a 3a 4a 5a + eigenvalues H -19.30687 -1.39049 -0.94946 -0.78665 -0.67946 + eV -525.3709 -37.8374 -25.8363 -21.4060 -18.4892 + occupation 1.0000 1.0000 1.0000 1.0000 + + irrep 6a 7a 8a 9a 10a + eigenvalues H -0.28729 -0.21628 0.16487 0.23733 0.46599 + eV -7.8175 -5.8853 4.4863 6.4580 12.6803 + + + _ _ _ + IRREP alpha occ. beta occ. tr(D*D-D) + + + a 5.00000000 4.00000000 -0.25102710 + + ------------------------------------------------- + + sum 5.00000000 4.00000000 -0.25102710 + + 0.75205420 + + + + + ============================================================================== + electrostatic moments + ============================================================================== + + reference point for electrostatic moments: 0.00000 0.00000 0.00000 + + + nuc elec -> total + ------------------------------------------------------------------------------ + charge + ------------------------------------------------------------------------------ + 10.000000 -9.000000 1.000000 + a-b 1.000000 + + ------------------------------------------------------------------------------ + dipole moment + ------------------------------------------------------------------------------ + x 0.000000 -0.000000 -0.000000 + y 0.000000 0.000000 0.000000 + z -5.079052 5.452532 0.373480 + + | dipole moment | = 0.3735 a.u. = 0.9493 debye + + ------------------------------------------------------------------------------ + quadrupole moment + ------------------------------------------------------------------------------ + xx 4.016539 -5.791038 -1.774499 + yy 0.000000 -3.492600 -3.492600 + zz 4.474951 -8.399997 -3.925046 + xy 0.000000 0.000000 0.000000 + xz 0.000000 0.000000 0.000000 + yz 0.000000 -0.000000 -0.000000 + + 1/3 trace= -3.064048 + anisotropy= 1.970245 + + ============================================================================== + +HOMO-LUMO Separation + HOMO : -0.78664890 H = -21.40582 eV + LUMO : -0.67946128 H = -18.48909 eV + HOMO-LUMO gap: 0.10718763 H = +2.91673 eV + + ============================================================================== + + + ------------------------------------------------------------------------ + total cpu-time : 0.27 seconds + total wall-time : 1.78 seconds + ------------------------------------------------------------------------ + + **** dscf : all done **** + + + 2023-01-25 00:18:21.229 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/ref_output.json new file mode 100644 index 0000000..24217ab --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/ref_output.json @@ -0,0 +1,254 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "ScfOutput", + "@version": "1.3.0", + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": null, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "scf": { + "@module": "turbomoleio.output.data", + "@class": "ScfData", + "@version": "1.3.0", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "ScfIterationData", + "@version": "1.3.0", + "energies": [ + -75.709149222343, + -75.816081492466, + -75.857212061739, + -75.874157090013, + -75.879194045962, + -75.880260802113, + -75.880414311673, + -75.880428556505, + -75.880429245802, + -75.880429377768, + -75.88056067654 + ], + "first_index": 1, + "n_steps": 11, + "dampings": [ + 1.0, + 0.95, + 0.8, + 0.65, + 0.5, + 0.35, + 0.2, + 0.1, + 0.15, + 0.2, + 0.25 + ], + "converged": true + }, + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": false, + "virtual_orbital_shift_limit": null, + "orbital_characterization": "expanded", + "restart_file": "alpha", + "n_occupied_orbitals": 5 + }, + "energies": { + "@module": "turbomoleio.output.data", + "@class": "ScfEnergiesData", + "@version": "1.3.0", + "total_energy": -75.88056067654, + "kinetic_energy": 75.74900599616, + "potential_energy": -151.6295666727, + "virial_theorem": 1.99826629272, + "wavefunction_norm": 1.0, + "coulomb_energy": null, + "xc_energy": null, + "ts_energy": null, + "free_energy": null, + "sigma0_energy": null + }, + "electrostatic": { + "@module": "turbomoleio.output.data", + "@class": "ElectrostaticMomentsData", + "@version": "1.3.0", + "charge": 1.0, + "unrestricted_electrons": 1.0, + "dipole_vector": [ + -0.0, + 0.0, + 0.37348 + ], + "dipole_norm": 0.3735, + "quadrupole_tensor": [ + [ + -1.774499, + 0.0, + 0.0 + ], + [ + 0.0, + -3.4926, + -0.0 + ], + [ + 0.0, + -0.0, + -3.925046 + ] + ], + "quadrupole_trace": -9.192144, + "quadrupole_anisotropy": 1.970245 + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790525 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "O", + "species": [ + { + "element": "O", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + -0.38395982917561094 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 0.7499151287230262, + 0.0, + 0.19197991458780547 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -0.7499151287230262, + 0.0, + 0.19197991458780547 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": null + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:19.500000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:21.229000" + }, + "cpu_time": 0.27, + "wall_time": 1.78 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "dscf" + }, + "cosmo": null, + "spin": { + "@module": "turbomoleio.output.data", + "@class": "SpinData", + "@version": "1.3.0", + "unrestricted": true, + "s2": { + "s2": 0.7520542 + } + }, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 1.8e-10, + "thize": 1e-05, + "thime": 5 + }, + "smearing": null, + "symmetry": { + "@module": "turbomoleio.output.data", + "@class": "SymmetryData", + "@version": "1.3.0", + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + }, + "periodicity": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/ref_parser.json new file mode 100644 index 0000000..92b7b02 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/ref_parser.json @@ -0,0 +1,207 @@ +{ + "all_done": true, + "header": { + "executable": "dscf", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:19.500000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790525 + ] + }, + "coordinates": { + "coords": [ + [ + 0.0, + 0.0, + -0.72557892 + ], + [ + 1.41713421, + 0.0, + 0.36278946 + ], + [ + -1.41713421, + 0.0, + 0.36278946 + ] + ], + "species": [ + "o", + "h", + "h" + ], + "charges": [ + 8.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": null + }, + "symmetry": { + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": null, + "pre_scf_run": { + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": false, + "virtual_orbital_shift_limit": null, + "orbital_characterization": "expanded", + "restart_file": "alpha", + "n_occupied_orbitals": 5 + }, + "scf_iterations": { + "energies": [ + -75.709149222343, + -75.816081492466, + -75.857212061739, + -75.874157090013, + -75.879194045962, + -75.880260802113, + -75.880414311673, + -75.880428556505, + -75.880429245802, + -75.880429377768, + -75.88056067654 + ], + "first_index": 1, + "n_steps": 11, + "dampings": [ + 1.0, + 0.95, + 0.8, + 0.65, + 0.5, + 0.35, + 0.2, + 0.1, + 0.15, + 0.2, + 0.25 + ], + "converged": true + }, + "scf_energies": { + "total_energy": -75.88056067654, + "kinetic_energy": 75.74900599616, + "potential_energy": -151.6295666727, + "virial_theorem": 1.99826629272, + "wavefunction_norm": 1.0 + }, + "cosmo_results": null, + "electrostatic_moments": { + "unrestricted_electrons": 1.0, + "charge": 1.0, + "dipole": { + "norm": 0.3735, + "moment": [ + -0.0, + 0.0, + 0.37348 + ] + }, + "quadrupole": { + "trace": -9.192144, + "anisotropy": 1.970245, + "moment": [ + [ + -1.774499, + 0.0, + 0.0 + ], + [ + 0.0, + -3.4926, + -0.0 + ], + [ + 0.0, + -0.0, + -3.925046 + ] + ] + } + }, + "timings": { + "cpu_time": 0.27, + "wall_time": 1.78, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:21.229000" + } + }, + "s2": { + "s2": 0.7520542 + }, + "is_uhf": true, + "fermi": null, + "integral": { + "integral_neglect_threshold": 1.8e-10, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": null, + "escf_iterations": null, + "escf_gs_total_en": null, + "escf_excitations": null, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/dscf.log b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/dscf.log new file mode 100644 index 0000000..102d22d --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/dscf.log @@ -0,0 +1,418 @@ + + dscf (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:18:36.870 + + + + d s c f - program + + idea & directorship : reinhart ahlrichs + program development : marco haeser + michael baer + dft version : oliver treutler + + + quantum chemistry group + universitaet karlsruhe + germany + + + + *-----------------------------------------------------------------------* + | program will use 1 thread(s) | + *-----------------------------------------------------------------------* + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 0.12917062 n 7.000 0 + 1.75612466 0.00000000 -0.59831614 h 1.000 0 + -0.87806233 1.52084857 -0.59831614 h 1.000 0 + -0.87806233 -1.52084857 -0.59831614 h 1.000 0 + + center of nuclear mass : -0.00000000 0.00000000 0.00000000 + center of nuclear charge: -0.00000000 0.00000000 -0.08907541 + + ************************************************************************* + dscf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + n 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 3 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 4 36 20 + --------------------------------------------------------------------------- + + total number of primitive shells : 16 + total number of contracted shells : 12 + total number of cartesian basis functions : 21 + total number of SCF-basis functions : 20 + + + integral neglect threshold : 0.16E-09 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + symmetry group of the molecule : c1 + + the group has the following generators : + c1(z) + + 1 symmetry operations found + + there are 1 real representations : a + + maximum number of shells which are related by symmetry : 1 + + ============================================================================== + COSMO switched on + ============================================================================== + COSMO stati: segments per atom: H 32 other atoms 92 + COSMO statistics: nps 168 npspher: 105 + COSMO surface: + number of segments: 168 + area (bohr**2): 172.967551 + volume (bohr**3): 205.077776 + COSMO: check number of disjunct cavities: + + ... OK contiguous cavity found + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 4 + partition function : becke + partition sharpness : 3 + + + ------------------------ + nuclear repulsion energy : 12.0340111163 + ------------------------ + + + ----------------- + -S,T+V- integrals + ----------------- + + 1e-integrals will be neglected if expon. factor < 0.159141E-10 + + Difference densities algorithm switched on. + The maximal number of linear combinations of + difference densities is 20 . + + DIIS switched on: error vector is FDS-SDF + Max. Iterations for DIIS is : 4 + DIIS matrix (see manual) + Scaling factor of diagonals : 1.200 + threshold for scaling factor : 0.000 + + scf convergence criterion : increment of total energy < .1000000D-06 + and increment of one-electron energy < .1000000D-03 + + MOs are in ASCII format ! + + + mo occupation : + irrep mo's occupied + a 20 5 + + number of basis functions : 20 + number of occupied orbitals : 5 + + + reading orbital data $scfmo from file mos + orbital characterization : expanded + virtual MOs provided and orthogonalized by Cholesky decomposition + + automatic virtual orbital shift switched on + shift if e(lumo)-e(homo) < 0.10000000 + + + DSCF restart information will be dumped onto file mos + + Fermi smearing switched on + Initial electron temperature: 500.00 + Final electron temperature: 50.00 + Annealing factor: 0.900 + Annealing if HOMO-LUMO gap < 0.2E+00 + Smearing switched off if DE < 0.1E-02 + Overall gridpoints after grid construction = 4369 + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 1 -56.339530065681 -100.07607680 31.702535618 0.000D+00 0.159D-09 + Exc = -8.011498791125 N = 9.9991073352 + Ediel = -0.018950975729 + max. resid. norm for Fia-block= 2.210D-01 for orbital 1a + max. resid. fock norm = 1.048D+00 for orbital 14a + Delta Eig. = 41.0161789303 eV + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 2 -56.481584020021 -99.486643286 30.971048150 0.473D+00 0.103D-09 + Exc = -7.964028252637 N = 9.9992917164 + Ediel = -0.010862024726 + Norm of current diis error: 0.27670 + max. resid. norm for Fia-block= 7.184D-02 for orbital 2a + max. resid. fock norm = 8.181D-02 for orbital 6a + Delta Eig. = 9.7935957063 eV + -------------------- FON Calculation --------------------- + Fermi level F = -0.22302 + Total number of electrons N = 10.00000 + Occupation numbers calculated for T = 500.00000 + Current HOMO-LUMO gap = 0.37604E+00 + ---------------------------------------------------------- + + current damping : 0.200 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 3 -56.499803347559 -100.11295250 31.579138037 0.199D+00 0.790D-10 + Exc = -8.075398534807 N = 9.9993897393 + Ediel = -0.011082679359 + Norm of current diis error: 0.12550 + max. resid. norm for Fia-block= 2.756D-02 for orbital 5a + max. resid. fock norm = 2.759D-02 for orbital 5a + Delta Eig. = 3.6547872367 eV + -------------------- FON Calculation --------------------- + Fermi level F = -0.18473 + Total number of electrons N = 10.00000 + Occupation numbers calculated for T = 500.00000 + Current HOMO-LUMO gap = 0.27762E+00 + ---------------------------------------------------------- + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 4 -56.502570657774 -99.673147749 31.136565975 0.101D+00 0.725D-10 + Exc = -8.024976945756 N = 9.9994060888 + Ediel = -0.009769970317 + Norm of current diis error: 0.66317E-01 + max. resid. norm for Fia-block= 7.184D-03 for orbital 2a + max. resid. fock norm = 7.216D-03 for orbital 2a + Delta Eig. = 0.3348327064 eV + -------------------- FON Calculation --------------------- + Fermi level F = -0.18787 + Total number of electrons N = 10.00000 + Occupation numbers calculated for T = 500.00000 + Current HOMO-LUMO gap = 0.26856E+00 + ---------------------------------------------------------- + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 5 -56.503211322094 -99.809144732 31.271922294 0.966D-02 0.698D-10 + Exc = -8.043188905168 N = 9.9994070642 + Ediel = -0.010061865602 + Norm of current diis error: 0.95995E-02 + max. resid. norm for Fia-block= 1.045D-03 for orbital 2a + max. resid. fock norm = 1.077D-03 for orbital 2a + mo-orthogonalization: Cholesky decomposition + Delta Eig. = 0.0626687573 eV + -------------------- FON Calculation --------------------- + Fermi level F = -0.18824 + Total number of electrons N = 10.00000 + Occupation numbers calculated for T = 500.00000 + Current HOMO-LUMO gap = 0.26685E+00 + ---------------------------------------------------------- + + current damping : 0.150 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 6 -56.503225254876 -99.828541120 31.291304749 0.791D-03 0.669D-10 + Exc = -8.045816038970 N = 9.9994074366 + Ediel = -0.010111947022 + Norm of current diis error: 0.15186E-02 + max. resid. norm for Fia-block= 1.950D-04 for orbital 2a + max. resid. fock norm = 1.970D-04 for orbital 2a + Delta Eig. = 0.0147728031 eV + -------------------- FON Calculation --------------------- + Fermi level F = -0.18823 + Total number of electrons N = 10.00000 + Occupation numbers calculated for T = 500.00000 + Current HOMO-LUMO gap = 0.26629E+00 + ---------------------------------------------------------- + + current damping : 0.100 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 7 -56.503225620147 -99.831674966 31.294438230 0.947D-04 0.647D-10 + Exc = -8.046261272361 N = 9.9994075222 + Ediel = -0.010117037506 + Norm of current diis error: 0.14368E-03 + max. resid. norm for Fia-block= 1.882D-05 for orbital 2a + max. resid. fock norm = 2.216D-05 for orbital 6a + Delta Eig. = 0.0018096782 eV + -------------------- FON Calculation --------------------- + Fermi level F = -0.18822 + Total number of electrons N = 10.00000 + Occupation numbers calculated for T = 500.00000 + Current HOMO-LUMO gap = 0.26622E+00 + ---------------------------------------------------------- + + ENERGY CONVERGED ! + + Evaluating v_xc on big grid + Overall gridpoints after grid construction = 17370 + + current damping : 0.150 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 8 -56.503498199225 -99.831928108 31.294418793 0.634D-05 0.627D-10 + Exc = -8.046569815347 N = 9.9999980190 + Ediel = -0.010117653696 + max. resid. norm for Fia-block= 4.352D-06 for orbital 2a + max. resid. fock norm = 4.569D-06 for orbital 2a + + convergence criteria satisfied after 8 iterations + + + ************************************************************************* + dscf + ************************************************************************* + + + ------------------------------------------ + | total energy = -56.50349819923 | + ------------------------------------------ + : kinetic energy = 56.09160310044 : + : potential energy = -112.59510129966 : + : virial theorem = 1.99271027260 : + : wavefunction norm = 1.00000000000 : + .......................................... + + + : there is no data group $energy + + + : $end is missing + + + orbitals $scfmo will be written to file mos + + irrep 1a 2a 3a 4a 5a + eigenvalues H -13.96499 -0.75969 -0.40366 -0.40362 -0.20847 + eV -380.0098 -20.6724 -10.9841 -10.9830 -5.6727 + occupation 2.0000 2.0000 2.0000 2.0000 2.0000 + + irrep 6a 7a 8a 9a 10a + eigenvalues H 0.05774 0.14082 0.14091 0.50118 0.50119 + eV 1.5713 3.8320 3.8343 13.6378 13.6383 + + ============================================================================== + COSMO RESULTS + ============================================================================== + PARAMETER: + nppa: 1082 + nspa: 92 + nsph: 32 + nps: 168 + npspher: 105 + disex: 10.0000 + disex2: 3600.83 + rsolv [A]: 1.3000 + routf: 0.8500 + phsran: 0.0 + ampran: 0.10E-04 + cavity: closed + epsilon: infinity + refind: 1.300 + fepsi: 1.0000000 + CAVITY VOLUME/AREA [a.u.]: + surface: V1.0, A matrix: V1.0 + area: 172.97 + volume: 205.08 + SCREENING CHARGE: + cosmo : -0.008248 + correction : 0.008009 + total : -0.000239 + ENERGIES [a.u.]: + Total energy = -56.5034981992255 + Total energy + OC corr. = -56.5035468625 + Dielectric energy = -0.0101176537 + Diel. energy + OC corr. = -0.0101663169 + ELEMENT RADIUS [A]: ATOM LIST + n 1.83: 1 + h 1.30: 2-4 + ============================================================================== + + + + ============================================================================== + electrostatic moments + ============================================================================== + + reference point for electrostatic moments: 0.00000 0.00000 0.00000 + + + nuc elec -> total + ------------------------------------------------------------------------------ + charge + ------------------------------------------------------------------------------ + 10.000000 -10.000000 -0.000000 + + ------------------------------------------------------------------------------ + dipole moment + ------------------------------------------------------------------------------ + x -0.000000 -0.000114 -0.000114 + y 0.000000 -0.000076 -0.000076 + z -0.890754 0.048405 -0.842349 + + | dipole moment | = 0.8423 a.u. = 2.1410 debye + + ------------------------------------------------------------------------------ + quadrupole moment + ------------------------------------------------------------------------------ + xx 4.625961 -9.138071 -4.512110 + yy 4.625961 -9.137889 -4.511928 + zz 1.190742 -7.528081 -6.337339 + xy 0.000000 0.000008 0.000008 + xz 0.000000 0.000163 0.000163 + yz 0.000000 -0.000023 -0.000023 + + 1/3 trace= -5.120459 + anisotropy= 1.825320 + + ============================================================================== + +HOMO-LUMO Separation + HOMO : -0.20846672 H = -5.67267 eV + LUMO : 0.05774319 H = +1.57127 eV + HOMO-LUMO gap: 0.26620991 H = +7.24394 eV + + ============================================================================== + + + ------------------------------------------------------------------------ + total cpu-time : 0.37 seconds + total wall-time : 2.35 seconds + ------------------------------------------------------------------------ + + **** dscf : all done **** + + + 2023-01-25 00:18:39.160 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/ref_output.json new file mode 100644 index 0000000..f5ad229 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/ref_output.json @@ -0,0 +1,322 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "ScfOutput", + "@version": "1.3.0", + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": null, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "scf": { + "@module": "turbomoleio.output.data", + "@class": "ScfData", + "@version": "1.3.0", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "ScfIterationData", + "@version": "1.3.0", + "energies": [ + -56.339530065681, + -56.481584020021, + -56.499803347559, + -56.502570657774, + -56.503211322094, + -56.503225254876, + -56.503225620147, + -56.503498199225 + ], + "first_index": 1, + "n_steps": 8, + "dampings": [ + 0.3, + 0.25, + 0.2, + 0.25, + 0.3, + 0.15, + 0.1, + 0.15 + ], + "converged": true + }, + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": true, + "virtual_orbital_shift_limit": 0.1, + "orbital_characterization": "expanded", + "restart_file": "mos", + "n_occupied_orbitals": 5 + }, + "energies": { + "@module": "turbomoleio.output.data", + "@class": "ScfEnergiesData", + "@version": "1.3.0", + "total_energy": -56.50349819923, + "kinetic_energy": 56.09160310044, + "potential_energy": -112.59510129966, + "virial_theorem": 1.9927102726, + "wavefunction_norm": 1.0, + "coulomb_energy": null, + "xc_energy": null, + "ts_energy": null, + "free_energy": null, + "sigma0_energy": null + }, + "electrostatic": { + "@module": "turbomoleio.output.data", + "@class": "ElectrostaticMomentsData", + "@version": "1.3.0", + "charge": -0.0, + "unrestricted_electrons": null, + "dipole_vector": [ + -0.000114, + -7.6e-05, + -0.842349 + ], + "dipole_norm": 0.8423, + "quadrupole_tensor": [ + [ + -4.51211, + 8e-06, + 0.000163 + ], + [ + 8e-06, + -4.511928, + -2.3e-05 + ], + [ + 0.000163, + -2.3e-05, + -6.337339 + ] + ], + "quadrupole_trace": -15.361377000000001, + "quadrupole_anisotropy": 1.82532 + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + -0.0, + 0.0, + 0.0 + ], + "center_of_charge": [ + -0.0, + 0.0, + -0.08907541 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "N", + "species": [ + { + "element": "N", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + 0.06835414842221127 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 0.9293011495767791, + 0.0, + -0.3166152662034489 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -0.46465057478838956, + 0.8047984044784159, + -0.3166152662034489 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -0.46465057478838956, + -0.8047984044784159, + -0.3166152662034489 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "n": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 20, + "number_scf_aux_basis_func": null + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:36.870000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:39.160000" + }, + "cpu_time": 0.37, + "wall_time": 2.35 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "dscf" + }, + "cosmo": { + "@module": "turbomoleio.output.data", + "@class": "CosmoData", + "@version": "1.3.0", + "info": { + "area": 172.967551, + "volume": 205.077776 + }, + "parameters": { + "nppa": 1082, + "nspa": 92, + "nsph": 32, + "nps": 168, + "npspher": 105, + "disex": 10.0, + "disex2": 3600.83, + "rsolv": 1.3, + "routf": 0.85, + "phsran": 0.0, + "ampran": 1e-05, + "cavity": "closed", + "epsilon": "infinity", + "refind": 1.3, + "fepsi": 1.0 + }, + "screening_charge": { + "cosmo": -0.008248, + "correction": 0.008009, + "total": -0.000239 + }, + "energies": { + "total_energy": -56.5034981992255, + "total_energy_oc_corr": -56.5035468625, + "dielectric_energy": -0.0101176537, + "dielectric_energy_oc_corr": -0.0101663169 + }, + "element_radius": { + "N": { + "radius": 1.83, + "sites": [ + 1 + ] + }, + "H": { + "radius": 1.3, + "sites": [ + 2, + 3, + 4 + ] + } + } + }, + "spin": { + "@module": "turbomoleio.output.data", + "@class": "SpinData", + "@version": "1.3.0", + "unrestricted": false, + "s2": null + }, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 1.6e-10, + "thize": 1e-05, + "thime": 5 + }, + "smearing": { + "@module": "turbomoleio.output.data", + "@class": "SmearingData", + "@version": "1.3.0", + "initial_elec_temp": 500.0, + "final_elec_temp": 50.0, + "annealing_factor": 0.9, + "annealing_homo_lumo_gap_limit": 0.2, + "smearing_de_limit": 0.001 + }, + "symmetry": { + "@module": "turbomoleio.output.data", + "@class": "SymmetryData", + "@version": "1.3.0", + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + }, + "periodicity": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/ref_parser.json new file mode 100644 index 0000000..8e0cea6 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/ref_parser.json @@ -0,0 +1,261 @@ +{ + "all_done": true, + "header": { + "executable": "dscf", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:36.870000" + } + }, + "centers": { + "center_of_mass": [ + -0.0, + 0.0, + 0.0 + ], + "center_of_charge": [ + -0.0, + 0.0, + -0.08907541 + ] + }, + "coordinates": { + "coords": [ + [ + 0.0, + 0.0, + 0.12917062 + ], + [ + 1.75612466, + 0.0, + -0.59831614 + ], + [ + -0.87806233, + 1.52084857, + -0.59831614 + ], + [ + -0.87806233, + -1.52084857, + -0.59831614 + ] + ], + "species": [ + "n", + "h", + "h", + "h" + ], + "charges": [ + 7.0, + 1.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "n": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 20, + "number_scf_aux_basis_func": null + }, + "symmetry": { + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + }, + "cosmo_header": { + "area": 172.967551, + "volume": 205.077776 + }, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": null, + "pre_scf_run": { + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": true, + "virtual_orbital_shift_limit": 0.1, + "orbital_characterization": "expanded", + "restart_file": "mos", + "n_occupied_orbitals": 5 + }, + "scf_iterations": { + "energies": [ + -56.339530065681, + -56.481584020021, + -56.499803347559, + -56.502570657774, + -56.503211322094, + -56.503225254876, + -56.503225620147, + -56.503498199225 + ], + "first_index": 1, + "n_steps": 8, + "dampings": [ + 0.3, + 0.25, + 0.2, + 0.25, + 0.3, + 0.15, + 0.1, + 0.15 + ], + "converged": true + }, + "scf_energies": { + "total_energy": -56.50349819923, + "kinetic_energy": 56.09160310044, + "potential_energy": -112.59510129966, + "virial_theorem": 1.9927102726, + "wavefunction_norm": 1.0 + }, + "cosmo_results": { + "parameters": { + "nppa": 1082, + "nspa": 92, + "nsph": 32, + "nps": 168, + "npspher": 105, + "disex": 10.0, + "disex2": 3600.83, + "rsolv": 1.3, + "routf": 0.85, + "phsran": 0.0, + "ampran": 1e-05, + "cavity": "closed", + "epsilon": "infinity", + "refind": 1.3, + "fepsi": 1.0 + }, + "screening_charge": { + "cosmo": -0.008248, + "correction": 0.008009, + "total": -0.000239 + }, + "energies": { + "total_energy": -56.5034981992255, + "total_energy_oc_corr": -56.5035468625, + "dielectric_energy": -0.0101176537, + "dielectric_energy_oc_corr": -0.0101663169 + }, + "element_radius": { + "n": { + "radius": 1.83, + "sites": [ + 1 + ] + }, + "h": { + "radius": 1.3, + "sites": [ + 2, + 3, + 4 + ] + } + } + }, + "electrostatic_moments": { + "unrestricted_electrons": null, + "charge": -0.0, + "dipole": { + "norm": 0.8423, + "moment": [ + -0.000114, + -7.6e-05, + -0.842349 + ] + }, + "quadrupole": { + "trace": -15.361377000000001, + "anisotropy": 1.82532, + "moment": [ + [ + -4.51211, + 8e-06, + 0.000163 + ], + [ + 8e-06, + -4.511928, + -2.3e-05 + ], + [ + 0.000163, + -2.3e-05, + -6.337339 + ] + ] + } + }, + "timings": { + "cpu_time": 0.37, + "wall_time": 2.35, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:39.160000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": { + "initial_elec_temp": 500.0, + "final_elec_temp": 50.0, + "annealing_homo_lumo_gap_limit": 0.2, + "smearing_de_limit": 0.001, + "annealing_factor": 0.9 + }, + "integral": { + "integral_neglect_threshold": 1.6e-10, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": null, + "escf_iterations": null, + "escf_gs_total_en": null, + "escf_excitations": null, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/dscf.log b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/dscf.log new file mode 100644 index 0000000..998030d --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/dscf.log @@ -0,0 +1,333 @@ + + dscf (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:18:22.428 + + + + d s c f - program + + idea & directorship : reinhart ahlrichs + program development : marco haeser + michael baer + dft version : oliver treutler + + + quantum chemistry group + universitaet karlsruhe + germany + + + + *-----------------------------------------------------------------------* + | program will use 1 thread(s) | + *-----------------------------------------------------------------------* + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 0.54561507 n 7.000 0 + -0.87806233 1.52084857 -0.18187169 h 1.000 0 + -0.87806233 -1.52084857 -0.18187169 h 1.000 0 + 1.75612466 0.00000000 -0.18187169 h 1.000 0 + + center of nuclear mass : 0.00000000 0.00000000 0.41644445 + center of nuclear charge: 0.00000000 0.00000000 0.32736904 + + ************************************************************************* + dscf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + n 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 3 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 4 36 20 + --------------------------------------------------------------------------- + + total number of primitive shells : 16 + total number of contracted shells : 12 + total number of cartesian basis functions : 21 + total number of SCF-basis functions : 20 + + + integral neglect threshold : 0.16E-09 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + symmetry group of the molecule : c3v + + the group has the following generators : + c3(z) + mirror plane sigma(xz) + + 6 symmetry operations found + + there are 3 real representations : a1 a2 e + + maximum number of shells which are related by symmetry : 3 + + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 2 + partition function : becke + partition sharpness : 3 + + grid rotated due to c3 or c6 main axis + + ------------------------ + nuclear repulsion energy : 12.0340111163 + ------------------------ + + + ----------------- + -S,T+V- integrals + ----------------- + + 1e-integrals will be neglected if expon. factor < 0.159141E-10 + + Difference densities algorithm switched on. + The maximal number of linear combinations of + difference densities is 20 . + + DIIS switched on: error vector is FDS-SDF + Max. Iterations for DIIS is : 4 + DIIS matrix (see manual) + Scaling factor of diagonals : 1.200 + threshold for scaling factor : 0.000 + + scf convergence criterion : increment of total energy < .1000000D-06 + and increment of one-electron energy < .1000000D-03 + + MOs are in ASCII format ! + + + mo occupation : + irrep mo's occupied + a1 8 3 + a2 0 0 + e 6 1 + + number of basis functions : 20 + number of occupied orbitals : 5 + + + reading orbital data $scfmo from file mos + orbital characterization : expanded + virtual MOs provided and orthogonalized by Cholesky decomposition + + automatic virtual orbital shift switched on + shift if e(lumo)-e(homo) < 0.10000000 + + + DSCF restart information will be dumped onto file mos + + Overall gridpoints after grid construction = 1018 + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 1 -56.321601056514 -100.05712582 31.701513651 0.000D+00 0.159D-09 + Exc = -8.012520757666 N = 10.003235294 + max. resid. norm for Fia-block= 2.201D-01 for orbital 1a1 + max. resid. fock norm = 9.780D-01 for orbital 4a1 + Delta Eig. = 41.4734907870 eV + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 2 -56.472819525478 -99.411593322 30.904762680 0.417D+00 0.102D-09 + Exc = -7.959906798389 N = 10.002513936 + Norm of current diis error: 0.33310 + max. resid. norm for Fia-block= 7.272D-02 for orbital 2a1 + max. resid. fock norm = 8.294D-02 for orbital 4a1 + Delta Eig. = 9.7750264813 eV + + current damping : 0.200 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 3 -56.491696141354 -100.05200569 31.526298436 0.195D+00 0.797D-10 + Exc = -8.073857511874 N = 10.002242932 + Norm of current diis error: 0.15169 + max. resid. norm for Fia-block= 2.620D-02 for orbital 3a1 + max. resid. fock norm = 2.625D-02 for orbital 3a1 + Delta Eig. = 3.5899306277 eV + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 4 -56.494380845537 -99.622959557 31.094567596 0.120D+00 0.719D-10 + Exc = -8.025191175908 N = 10.002267031 + Norm of current diis error: 0.82225E-01 + max. resid. norm for Fia-block= 7.181D-03 for orbital 2a1 + max. resid. fock norm = 7.203D-03 for orbital 2a1 + Delta Eig. = 0.3505445109 eV + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 5 -56.495001530423 -99.754179935 31.225167288 0.101D-01 0.692D-10 + Exc = -8.042554004612 N = 10.002269365 + Norm of current diis error: 0.12904E-01 + max. resid. norm for Fia-block= 1.098D-03 for orbital 2a1 + max. resid. fock norm = 1.133D-03 for orbital 2a1 + mo-orthogonalization: Cholesky decomposition + Delta Eig. = 0.0641672965 eV + + current damping : 0.150 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 6 -56.495016942941 -99.774049223 31.245021164 0.583D-03 0.665D-10 + Exc = -8.045217452019 N = 10.002270390 + Norm of current diis error: 0.22817E-02 + max. resid. norm for Fia-block= 2.242D-04 for orbital 2a1 + max. resid. fock norm = 2.264D-04 for orbital 2a1 + Delta Eig. = 0.0155754749 eV + + current damping : 0.100 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 7 -56.495017450803 -99.777886594 31.248858027 0.869D-04 0.643D-10 + Exc = -8.045750494083 N = 10.002270858 + Norm of current diis error: 0.19642E-03 + max. resid. norm for Fia-block= 2.132D-05 for orbital 2a1 + max. resid. fock norm = 2.359D-05 for orbital 2a1 + Delta Eig. = 0.0018947548 eV + + ENERGY CONVERGED ! + + Evaluating v_xc on big grid + Overall gridpoints after grid construction = 3542 + + current damping : 0.100 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 8 -56.494404516578 -99.778150477 31.249734844 0.138D-04 0.626D-10 + Exc = -8.045172886026 N = 10.000020935 + max. resid. norm for Fia-block= 5.150D-06 for orbital 2a1 + max. resid. fock norm = 5.209D-06 for orbital 2a1 + + convergence criteria satisfied after 8 iterations + + + ************************************************************************* + dscf + ************************************************************************* + + + ------------------------------------------ + | total energy = -56.49440451658 | + ------------------------------------------ + : kinetic energy = 56.11677159769 : + : potential energy = -112.61117611426 : + : virial theorem = 1.99331556953 : + : wavefunction norm = 1.00000000000 : + .......................................... + + + : there is no data group $energy + + + : $end is missing + + + orbitals $scfmo will be written to file mos + + irrep 1a1 2a1 3a1 4a1 5a1 + eigenvalues H -13.96838 -0.76647 -0.20104 0.04256 0.67341 + eV -380.1019 -20.8568 -5.4707 1.1581 18.3247 + occupation 2.0000 2.0000 2.0000 + + irrep 6a1 7a1 8a1 + eigenvalues H 0.69640 0.90573 2.22992 + eV 18.9501 24.6463 60.6797 + + irrep 1e 2e 3e 4e 5e + eigenvalues H -0.41014 0.12582 0.49883 0.84019 2.02289 + eV -11.1607 3.4237 13.5740 22.8630 55.0461 + occupation 2 * 2.0000 + + irrep 6e + eigenvalues H 2.55166 + eV 69.4348 + + + + + ============================================================================== + electrostatic moments + ============================================================================== + + reference point for electrostatic moments: 0.00000 0.00000 0.00000 + + + nuc elec -> total + ------------------------------------------------------------------------------ + charge + ------------------------------------------------------------------------------ + 10.000000 -10.000000 -0.000000 + + ------------------------------------------------------------------------------ + dipole moment + ------------------------------------------------------------------------------ + x 0.000000 -0.000000 0.000000 + y 0.000000 0.000000 0.000000 + z 3.273690 -4.010053 -0.736363 + + | dipole moment | = 0.7364 a.u. = 1.8716 debye + + ------------------------------------------------------------------------------ + quadrupole moment + ------------------------------------------------------------------------------ + xx 4.625961 -9.223282 -4.597321 + yy 4.625961 -9.223282 -4.597321 + zz 2.183103 -9.132466 -6.949364 + xy 0.000000 -0.000000 -0.000000 + xz -0.000000 0.000000 -0.000000 + yz 0.000000 -0.000000 -0.000000 + + 1/3 trace= -5.381335 + anisotropy= 2.352042 + + ============================================================================== + +HOMO-LUMO Separation + HOMO : -0.20104159 H = -5.47062 eV + LUMO : 0.04255846 H = +1.15808 eV + HOMO-LUMO gap: 0.24360005 H = +6.62870 eV + + ============================================================================== + + + ------------------------------------------------------------------------ + total cpu-time : 0.13 seconds + total wall-time : 1.08 seconds + ------------------------------------------------------------------------ + + **** dscf : all done **** + + + 2023-01-25 00:18:23.454 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/ref_output.json new file mode 100644 index 0000000..5600e66 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/ref_output.json @@ -0,0 +1,263 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "ScfOutput", + "@version": "1.3.0", + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": null, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "scf": { + "@module": "turbomoleio.output.data", + "@class": "ScfData", + "@version": "1.3.0", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "ScfIterationData", + "@version": "1.3.0", + "energies": [ + -56.321601056514, + -56.472819525478, + -56.491696141354, + -56.494380845537, + -56.495001530423, + -56.495016942941, + -56.495017450803, + -56.494404516578 + ], + "first_index": 1, + "n_steps": 8, + "dampings": [ + 0.3, + 0.25, + 0.2, + 0.25, + 0.3, + 0.15, + 0.1, + 0.1 + ], + "converged": true + }, + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": true, + "virtual_orbital_shift_limit": 0.1, + "orbital_characterization": "expanded", + "restart_file": "mos", + "n_occupied_orbitals": 5 + }, + "energies": { + "@module": "turbomoleio.output.data", + "@class": "ScfEnergiesData", + "@version": "1.3.0", + "total_energy": -56.49440451658, + "kinetic_energy": 56.11677159769, + "potential_energy": -112.61117611426, + "virial_theorem": 1.99331556953, + "wavefunction_norm": 1.0, + "coulomb_energy": null, + "xc_energy": null, + "ts_energy": null, + "free_energy": null, + "sigma0_energy": null + }, + "electrostatic": { + "@module": "turbomoleio.output.data", + "@class": "ElectrostaticMomentsData", + "@version": "1.3.0", + "charge": -0.0, + "unrestricted_electrons": null, + "dipole_vector": [ + 0.0, + 0.0, + -0.736363 + ], + "dipole_norm": 0.7364, + "quadrupole_tensor": [ + [ + -4.597321, + -0.0, + -0.0 + ], + [ + -0.0, + -4.597321, + -0.0 + ], + [ + -0.0, + -0.0, + -6.949364 + ] + ], + "quadrupole_trace": -16.144005, + "quadrupole_anisotropy": 2.352042 + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + 0.0, + 0.0, + 0.41644445 + ], + "center_of_charge": [ + 0.0, + 0.0, + 0.32736904 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "N", + "species": [ + { + "element": "N", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + 0.28872706096924505 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -0.46465057478838956, + 0.8047984044784159, + -0.09624235365641504 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -0.46465057478838956, + -0.8047984044784159, + -0.09624235365641504 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 0.9293011495767791, + 0.0, + -0.09624235365641504 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "n": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 20, + "number_scf_aux_basis_func": null + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:22.428000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:23.454000" + }, + "cpu_time": 0.13, + "wall_time": 1.08 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "dscf" + }, + "cosmo": null, + "spin": { + "@module": "turbomoleio.output.data", + "@class": "SpinData", + "@version": "1.3.0", + "unrestricted": false, + "s2": null + }, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 1.6e-10, + "thize": 1e-05, + "thime": 5 + }, + "smearing": null, + "symmetry": { + "@module": "turbomoleio.output.data", + "@class": "SymmetryData", + "@version": "1.3.0", + "symbol": "c3v", + "n_reps": 3, + "reps": [ + "a1", + "a2", + "e" + ] + }, + "periodicity": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/ref_parser.json new file mode 100644 index 0000000..04101b1 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/ref_parser.json @@ -0,0 +1,209 @@ +{ + "all_done": true, + "header": { + "executable": "dscf", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:22.428000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + 0.41644445 + ], + "center_of_charge": [ + 0.0, + 0.0, + 0.32736904 + ] + }, + "coordinates": { + "coords": [ + [ + 0.0, + 0.0, + 0.54561507 + ], + [ + -0.87806233, + 1.52084857, + -0.18187169 + ], + [ + -0.87806233, + -1.52084857, + -0.18187169 + ], + [ + 1.75612466, + 0.0, + -0.18187169 + ] + ], + "species": [ + "n", + "h", + "h", + "h" + ], + "charges": [ + 7.0, + 1.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "n": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 20, + "number_scf_aux_basis_func": null + }, + "symmetry": { + "symbol": "c3v", + "n_reps": 3, + "reps": [ + "a1", + "a2", + "e" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": null, + "pre_scf_run": { + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": true, + "virtual_orbital_shift_limit": 0.1, + "orbital_characterization": "expanded", + "restart_file": "mos", + "n_occupied_orbitals": 5 + }, + "scf_iterations": { + "energies": [ + -56.321601056514, + -56.472819525478, + -56.491696141354, + -56.494380845537, + -56.495001530423, + -56.495016942941, + -56.495017450803, + -56.494404516578 + ], + "first_index": 1, + "n_steps": 8, + "dampings": [ + 0.3, + 0.25, + 0.2, + 0.25, + 0.3, + 0.15, + 0.1, + 0.1 + ], + "converged": true + }, + "scf_energies": { + "total_energy": -56.49440451658, + "kinetic_energy": 56.11677159769, + "potential_energy": -112.61117611426, + "virial_theorem": 1.99331556953, + "wavefunction_norm": 1.0 + }, + "cosmo_results": null, + "electrostatic_moments": { + "unrestricted_electrons": null, + "charge": -0.0, + "dipole": { + "norm": 0.7364, + "moment": [ + 0.0, + 0.0, + -0.736363 + ] + }, + "quadrupole": { + "trace": -16.144005, + "anisotropy": 2.352042, + "moment": [ + [ + -4.597321, + -0.0, + -0.0 + ], + [ + -0.0, + -4.597321, + -0.0 + ], + [ + -0.0, + -0.0, + -6.949364 + ] + ] + } + }, + "timings": { + "cpu_time": 0.13, + "wall_time": 1.08, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:23.454000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 1.6e-10, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": null, + "escf_iterations": null, + "escf_gs_total_en": null, + "escf_excitations": null, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/egrad.log b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/egrad.log new file mode 100644 index 0000000..d3acb2f --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/egrad.log @@ -0,0 +1,811 @@ + + egrad (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:18:44.173 + + + + + e g r a d + + TURBOMOLE GmbH + + + integral direct evaluation of excited state + and polarizability gradients + and first-order nonadiabatic couplings + + + + references (see also programs escf, dscf and ridft) + + review + F. Furche and D. Rappoport, + "Density functional methods for excited states: + equilibrium structure and electronic spectra", + ch. III of "Computational Photochemistry", ed. by + M. Olivucci, vol. 16 of "Theoretical and Computational + Chemistry", Elsevier, Amsterdam, 2005. + + nonorthonormal Krylov space methods + F. Furche, B. T. Krull, B. D. Nguyen, J. Kwon, + J. Chem. Phys. 144 (2016), 174105. + + RI-J method + D. Rappoport and F. Furche, + J. Chem. Phys. 122 (2005), 064105. + + Lagrangian method, implementation, benchmarks + F. Furche and R. Ahlrichs, + J. Chem. Phys. 117 (2002), 7433; + J. Chem. Phys. 121 (2004), 12772 (E). + + Polarizability derivatives, Raman intensities + D. Rappoport and F. Furche, + J. Chem. Phys. 126 (2007), 201104. + + First-order nonadiabatic couplings + R. Send and F. Furche, + J. Chem. Phys. 132 (2010), 044107. + + + + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 -0.72557892 o 8.000 0 + 1.41713421 0.00000000 0.36278946 h 1.000 0 + -1.41713421 0.00000000 0.36278946 h 1.000 0 + + center of nuclear mass : 0.00000000 0.00000000 -0.60378908 + center of nuclear charge: 0.00000000 0.00000000 -0.50790524 + + ************************************************************************* + ridft_escf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 2 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 3 32 18 + --------------------------------------------------------------------------- + + total number of primitive shells : 16 + total number of contracted shells : 10 + total number of cartesian basis functions : 19 + total number of SCF-basis functions : 18 + + + residuum convergence criterium : 0.10E-04 + + + integral neglect threshold : 0.33E-10 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + RPA SINGLET-EXCITATION-CALCULATION + + FOUND DFT-FLAG ! + + + FOUND RI-J FLAG ! + + + AUXILIARY BASIS SET information: + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 39 37 def-SV(P) [6s3p3d1f|8s3p3d1f] + h 2 10 5 def-SV(P) [2s1p|4s2p] + --------------------------------------------------------------------------- + total: 3 59 47 + --------------------------------------------------------------------------- + + total number of primitive shells : 21 + total number of contracted shells : 19 + total number of cartesian basis functions : 53 + total number of SCF-basis functions : 47 + + + symmetry group of the molecule : c2v + + the group has the following generators : + c2(z) + mirror plane sigma(xz) + + 4 symmetry operations found + + there are 4 real representations : a1 a2 b1 b2 + + maximum number of shells which are related by symmetry : 2 + + IRREP of excited state : a1 + + + determining totally symmetric integral contributions + - equivalent to irreducible tensor elements - + which can be formed within each triple of representations : + + representation triple contributions + + a1 a1 a1 1 + a2 a2 a1 1 + b1 b1 a1 1 + b2 b2 a1 1 + + mo occupation : + irrep mo's occupied + a1 9 3 + a2 1 0 + b1 5 1 + b2 3 1 + + number of basis functions : 18 + number of occupied orbitals : 5 + + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 2 + partition function : becke + partition sharpness : 3 + + + ---------------------- + RI - INFORMATION + ---------------------- + + biggest AO integral is expected to be 4.776656448 + + Threshold for integral neglect (rithr2): 0.33E-10 + Threshold for integral neglect (rithr1): 0.33E-10 + + Contributions to RI integral batches: + neglected integral batches: 16 + direct contribution: 0 + memory contribution: 39 + Core memory available (ricore) 500 MiB + Core memory needed for (P|Q) and Cholesky 1 MiB + Core memory used for integrals 1 MiB + + **************************************** + Memory allocated for RIDFT 1 MiB + **************************************** + + MOs are in ASCII format ! + + + reading orbital data $scfmo from file mos + orbital characterization : scfconv=7 + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 1098 + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 9.999336695690088 + + + + number of non-frozen orbitals : 18 + number of non-frozen occupied orbitals : 5 + + + + ------------------- + excitation vector + ------------------- + + + dimension of super-tensorspace: 1 + + IRREP tensor space dimension number of roots + + a1 24 3 + + maximum number of Davidson iterations set to 35 + + + machine precision: 2.22D-16 + + + logfile sing_a1 will be constructed + + + Nonorthonormal Krylov Space Iteration + + + total number of roots to be determined: 3 + + + maximum core memory set to 500 MB, + corresponding to 151353 vectors in CAO basis + + + maximum number of simultaneously treated vectors (including degeneracy): 6 + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 1 a1 0 1.939690916493864D-01 + + 2 a1 0 2.980248193796169D-02 + + 3 a1 0 1.306174998529588D-03 + + 4 a1 3 7.306197245305287D-06 + + + converged! + + + Switching to fine grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 3891 + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 9.999998376409447 + + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 5 a1 0 2.319401871552961D-04 + + + NOTE: Residual norms are larger than 1.00D-05 due to mgrid option! + + Eigenpairs written on logfile sing_a1 + + + + IRREP Vector Eigenvalue Euclidean residual norm + + a1 1 1.269529911945098D-01 1.435476517396013D-04 + 2 4.033097284828305D-01 2.319401871552961D-04 + 3 8.990615877289541D-01 1.825065158750371D-04 + + + + + + + Selection rules for point group c2v + + + Subduction with respect to c2v : + + Polar vector representation: a1, b1, b2 + + Axial vector representation: a2, b1, b2 + + Symmetric second rank tensor representation: a1, a2, b1, b2 + + + + + Ground state + + + Total energy: -76.34300618247001 + + Charge: + + elec nuc total + + -10.000000 10.000000 -0.000000 + + + Electric dipole moment: + + elec nuc total + + x 0.000000 0.000000 0.000000 Norm: 0.833024 + y 0.000000 0.000000 0.000000 + z 5.912076 -5.079052 0.833024 Norm / debye: 2.117351 + + + Electric quadrupole moment: + + elec nuc total + + xx -7.255308 4.016539 -3.238769 + yy -5.263827 0.000000 -5.263827 1/3*trace: -4.613667 + zz -9.813356 4.474951 -5.338406 + xy 0.000000 0.000000 0.000000 + xz 0.000000 0.000000 0.000000 Anisotropy: 2.063359 + yz 0.000000 0.000000 0.000000 + + + + ============================================================================== + + I R R E P a1 + + ============================================================================== + + + Excitation is electric dipole allowed + + Excitation is magnetic dipole forbidden + + Excitation is electric quadrupole allowed + + + + + 1 singlet a1 excitation + + + Total energy: -75.98670154989486 + + Excitation energy: 0.3563046325751461 + + Excitation energy / eV: 9.695546514208587 + + Excitation energy / nm: 127.8775196682028 + + Excitation energy / cm^(-1): 78199.82765112937 + + + Oscillator strength: + + velocity representation: 0.1689002024191568 + + length representation: 0.7846609560737540E-01 + + mixed representation: 0.1151214116970714 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 4 a1 0.92 99.2 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.843238 + y 0.000000 + z 0.843238 Norm / debye: 2.143312 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.574746 + y 0.000000 + z 0.574746 Norm / debye: 1.460870 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 0.558280 + yy 0.090691 1/3*trace: 0.145317 + zz -0.213020 + xy 0.000000 + xz 0.000000 Anisotropy: 0.672973 + yz 0.000000 + + + + + 2 singlet a1 excitation + + + Total energy: -75.70793947063351 + + Excitation energy: 0.6350667118365050 + + Excitation energy / eV: 17.28105189016237 + + Excitation energy / nm: 71.74577380735093 + + Excitation energy / cm^(-1): 139381.0320501802 + + + Oscillator strength: + + velocity representation: 0.1206675243515526 + + length representation: 0.1188028214929186 + + mixed representation: 0.1197315428595569 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 2 b1 3.09 96.1 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.533865 + y 0.000000 + z 0.533865 Norm / debye: 1.356959 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.529724 + y 0.000000 + z 0.529724 Norm / debye: 1.346433 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 1.819326 + yy 0.168271 1/3*trace: 0.667268 + zz 0.014207 + xy 0.000000 + xz 0.000000 Anisotropy: 1.733230 + yz 0.000000 + + + + + 3 singlet a1 excitation + + + Total energy: -75.39481760010416 + + Excitation energy: 0.9481885823658467 + + Excitation energy / eV: 25.80153515862773 + + Excitation energy / nm: 48.05304926401228 + + Excitation energy / cm^(-1): 208103.3389487008 + + + Oscillator strength: + + velocity representation: 0.3576166987678396E-02 + + length representation: 0.5705805333778516E-02 + + mixed representation: 0.4517179725534289E-02 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 5 a1 17.22 75.2 + 2 a1 -24.72 4 a1 0.92 22.4 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.075215 + y 0.000000 + z -0.075215 Norm / debye: 0.191180 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.095007 + y 0.000000 + z -0.095007 Norm / debye: 0.241486 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx -0.044793 + yy -0.151784 1/3*trace: -0.205741 + zz -0.420645 + xy 0.000000 + xz 0.000000 Anisotropy: 0.335409 + yz 0.000000 + + SUMMARY OF EXCITATION ENERGIES AND DIPOLE OSCILLATOR STRENGTHS (velocity/length): + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a1 | 0.356305 | 9.69554 | 78199.828 | 127.878 | 0.16890 | 0.07847 | + | 2 a1 | 0.635067 | 17.28105 | 139381.032 | 71.746 | 0.12067 | 0.11880 | + | 3 a1 | 0.948189 | 25.80153 | 208103.339 | 48.053 | 0.00358 | 0.00571 | + ----------------------------------------------------------------------------------------------- + Transitions are magnetic dipole forbidden in irrep a1 + + + + IRREP tensor space dimension number of roots + + a1 24 3 + + + Data group $exopt missing or empty + Default state chosen: 3 + + + + Excited state no. 3 chosen for optimization + + + IRREP tensor space dimension number of roots + + a1 24 1 + + ---------------------- + CPKS right-hand side + ---------------------- + + + IRREP tensor space dimension number of roots + + a1 24 1 + + ---------------- + CPKS equations + ---------------- + + + logfile dipl_a1 will be constructed + + Switching to coarse grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 1098 + + + Nonorthonormal Krylov Space Iteration + + + total number of roots to be determined: 1 + + + maximum core memory set to 500 MB, + corresponding to 151353 vectors in CAO basis + + + maximum number of simultaneously treated vectors (including degeneracy): 1 + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 1 a1 0 1.184607663538645D-01 + + 2 a1 0 9.418872154697264D-03 + + 3 a1 0 8.558064401716414D-04 + + 4 a1 0 5.410901863758168D-05 + + 5 a1 1 1.400640266278741D-06 + + + converged! + + + Switching to fine grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 3891 + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 6 a1 0 4.718628404915467D-05 + + + NOTE: Residual norms are larger than 1.00D-05 due to mgrid option! + + Eigenpairs written on logfile dipl_a1 + + + + IRREP Vector Frequency Euclidean residual norm + + a1 1 0.000000000000000D+00 4.718628404915467D-05 + + + + ------------------- + relaxed densities + ------------------- + + + ---------------------------------------- + S+T+V CONTRIBUTIONS TO ENERGY GRADIENT + ---------------------------------------- + + 1e-integral 1st. derivatives will be neglected if expon. factor < 0.100000E-10 + + + ----------------------------------------------- + TWO ELECTRON CONTRIBUTIONS TO ENERGY GRADIENT + ----------------------------------------------- + + setting up bound for integral derivative estimation + + increment for numerical differentiation : 0.00050000 + + biggest AO integral is expected to be 4.776656448 + biggest cartesian 1st derivative AO integral is expected to be 8.648821438 + Integrated ground state density : 9.999998376409447 + + + ------------------------------------------------ + cartesian gradient of the energy (hartree/bohr) + ------------------------------------------------ + + ATOM 1 o 2 h 3 h +dE/dx 0.0000000D+00 -0.3672901D+00 0.3672901D+00 +dE/dy 0.0000000D+00 0.0000000D+00 0.0000000D+00 +dE/dz 0.1311139D+00 -0.6555727D-01 -0.6555727D-01 + + resulting FORCE (fx,fy,fz) = (0.000D+00,0.000D+00,-.642D-06) + resulting MOMENT (mx,my,mz) = (0.000D+00,0.000D+00,0.000D+00) + + + ********************************************************************** + |maximum component of gradient| : 0.36729006 (atom 2 h ) + gradient norm : 0.54368220 + ********************************************************************** + + exx = -1.040999 eyy = 0.000000 ezz = -0.142700 + eyz = 0.000000 exz = 0.000000 exy = 0.000000 + + + : data group $grad is missing + + *** cartesian gradients written onto *** + + + + ============================================================================== + electrostatic moments + ============================================================================== + + reference point for electrostatic moments: 0.00000 0.00000 0.00000 + + + nuc gs,e -> gs,tot excit -> total + ------------------------------------------------------------------------------ + charge + ------------------------------------------------------------------------------ + 10.000000 -10.000000 -0.000000 0.000000 -0.000000 + + ------------------------------------------------------------------------------ + dipole moment + ------------------------------------------------------------------------------ + x 0.000000 0.000000 0.000000 0.000000 0.000000 + y 0.000000 0.000000 0.000000 0.000000 0.000000 + z -5.079052 5.912076 0.833024 -0.840749 -0.007725 + + | dipole moment | = 0.0077 a.u. = 0.0196 debye + + ------------------------------------------------------------------------------ + quadrupole moment + ------------------------------------------------------------------------------ + xx 4.016539 -7.255308 -3.238769 -1.781190 -5.019959 + yy 0.000000 -5.263827 -5.263827 -0.850431 -6.114257 + zz 4.474951 -9.813356 -5.338406 0.159517 -5.178888 + xy 0.000000 0.000000 0.000000 0.000000 0.000000 + xz 0.000000 -0.000000 -0.000000 0.000000 -0.000000 + yz 0.000000 0.000000 0.000000 0.000000 0.000000 + + 1/3 trace= -5.437702 + anisotropy= 1.024125 + + ============================================================================== + + + + ------------------------------------------------------------------------ + total cpu-time : 0.24 seconds + total wall-time : 2.38 seconds + ------------------------------------------------------------------------ + + **** egrad : all done **** + + + 2023-01-25 00:18:46.480 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/ref_output.json new file mode 100644 index 0000000..b51ef70 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/ref_output.json @@ -0,0 +1,437 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "EgradOutput", + "@version": "1.3.0", + "gradients": [ + [ + 0.0, + 0.0, + 0.1311139 + ], + [ + -0.3672901, + 0.0, + -0.06555727 + ], + [ + 0.3672901, + 0.0, + -0.06555727 + ] + ], + "dielectric": [ + [ + -1.040999, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.1427 + ] + ], + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": { + "@module": "turbomoleio.output.data", + "@class": "RiData", + "@version": "1.3.0", + "ricore": 500, + "marij": false, + "rij_memory": 1, + "rik": false + }, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "escf": { + "@module": "turbomoleio.output.data", + "@class": "EscfData", + "@version": "1.3.0", + "calc_type": "RPA SINGLET-EXCITATION", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "EscfIterationData", + "@version": "1.3.0", + "steps": [ + [ + [ + "a1", + 0, + 0.1939690916493864 + ] + ], + [ + [ + "a1", + 0, + 0.02980248193796169 + ] + ], + [ + [ + "a1", + 0, + 0.001306174998529588 + ] + ], + [ + [ + "a1", + 3, + 7.306197245305287e-06 + ] + ] + ], + "converged": true + }, + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 5, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 151353, + "max_treated_vectors": 6, + "irrep_data": { + "a1": { + "tensor_space_dim": 24, + "n_roots": 3 + } + }, + "gs_tot_en": -76.34300618247, + "excitations": { + "a1": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.98670154989486, + "osc_stre": 0.0784660956073754, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.574746 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.435951, + "anisotropy": 0.672973, + "moment": [ + [ + 0.55828, + 0.0, + 0.0 + ], + [ + 0.0, + 0.090691, + 0.0 + ], + [ + 0.0, + 0.0, + -0.21302 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.7079394706335, + "osc_stre": 0.1188028214929186, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 96.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.529724 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 2.001804, + "anisotropy": 1.73323, + "moment": [ + [ + 1.819326, + 0.0, + 0.0 + ], + [ + 0.0, + 0.168271, + 0.0 + ], + [ + 0.0, + 0.0, + 0.014207 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.39481760010416, + "osc_stre": 0.005705805333778516, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 75.2 + }, + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 22.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.095007 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.6172230000000001, + "anisotropy": 0.335409, + "moment": [ + [ + -0.044793, + 0.0, + 0.0 + ], + [ + 0.0, + -0.151784, + 0.0 + ], + [ + 0.0, + 0.0, + -0.420645 + ] + ] + } + } + ] + } + ] + } + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790524 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "O", + "species": [ + { + "element": "O", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + -0.38395982917561094 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 0.7499151287230262, + 0.0, + 0.19197991458780547 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -0.7499151287230262, + 0.0, + 0.19197991458780547 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": 47 + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:44.173000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:46.480000" + }, + "cpu_time": 0.24, + "wall_time": 2.38 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "egrad" + }, + "cosmo": null, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 3.3e-11, + "thize": 1e-05, + "thime": 5 + }, + "ex_state": 3 +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/ref_parser.json new file mode 100644 index 0000000..c9c2c36 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/ref_parser.json @@ -0,0 +1,442 @@ +{ + "all_done": true, + "header": { + "executable": "egrad", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:44.173000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790524 + ] + }, + "coordinates": { + "coords": [ + [ + 0.0, + 0.0, + -0.72557892 + ], + [ + 1.41713421, + 0.0, + 0.36278946 + ], + [ + -1.41713421, + 0.0, + 0.36278946 + ] + ], + "species": [ + "o", + "h", + "h" + ], + "charges": [ + 8.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": 47 + }, + "symmetry": { + "symbol": "c2v", + "n_reps": 4, + "reps": [ + "a1", + "a2", + "b1", + "b2" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": { + "marij": false, + "rij_memory": 1, + "rik": false, + "ricore": 500 + }, + "dftd": null, + "pre_scf_run": null, + "scf_iterations": null, + "scf_energies": null, + "cosmo_results": null, + "electrostatic_moments": { + "unrestricted_electrons": null, + "charge": -0.0, + "dipole": { + "norm": 0.0077, + "moment": [ + 0.0, + 0.0, + -0.007725 + ] + }, + "quadrupole": { + "trace": -16.313105999999998, + "anisotropy": 1.024125, + "moment": [ + [ + -5.019959, + 0.0, + -0.0 + ], + [ + 0.0, + -6.114257, + 0.0 + ], + [ + -0.0, + 0.0, + -5.178888 + ] + ] + } + }, + "timings": { + "cpu_time": 0.24, + "wall_time": 2.38, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:46.480000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 3.3e-11, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": { + "calc_type": "RPA SINGLET-EXCITATION", + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 5, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 151353, + "max_treated_vectors": 6, + "irrep_data": { + "a1": { + "tensor_space_dim": 24, + "n_roots": 3 + } + } + }, + "escf_iterations": { + "steps": [ + [ + [ + "a1", + 0, + 0.1939690916493864 + ] + ], + [ + [ + "a1", + 0, + 0.02980248193796169 + ] + ], + [ + [ + "a1", + 0, + 0.001306174998529588 + ] + ], + [ + [ + "a1", + 3, + 7.306197245305287e-06 + ] + ] + ], + "converged": true + }, + "escf_gs_total_en": -76.34300618247, + "escf_excitations": { + "a1": [ + { + "tot_en": -75.98670154989486, + "osc_stre": 0.0784660956073754, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.574746 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.435951, + "anisotropy": 0.672973, + "moment": [ + [ + 0.55828, + 0.0, + 0.0 + ], + [ + 0.0, + 0.090691, + 0.0 + ], + [ + 0.0, + 0.0, + -0.21302 + ] + ] + } + } + ] + }, + { + "tot_en": -75.7079394706335, + "osc_stre": 0.1188028214929186, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 96.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.529724 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 2.001804, + "anisotropy": 1.73323, + "moment": [ + [ + 1.819326, + 0.0, + 0.0 + ], + [ + 0.0, + 0.168271, + 0.0 + ], + [ + 0.0, + 0.0, + 0.014207 + ] + ] + } + } + ] + }, + { + "tot_en": -75.39481760010416, + "osc_stre": 0.005705805333778516, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 75.2 + }, + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 22.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.095007 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.6172230000000001, + "anisotropy": 0.335409, + "moment": [ + [ + -0.044793, + 0.0, + 0.0 + ], + [ + 0.0, + -0.151784, + 0.0 + ], + [ + 0.0, + 0.0, + -0.420645 + ] + ] + } + } + ] + } + ] + }, + "rdgrad_memory": null, + "gradient": { + "gradients": [ + [ + 0.0, + 0.0, + 0.1311139 + ], + [ + -0.3672901, + 0.0, + -0.06555727 + ], + [ + 0.3672901, + 0.0, + -0.06555727 + ] + ], + "dielectric": [ + [ + -1.040999, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.1427 + ] + ] + }, + "egrad_excited_state": { + "index": 3, + "default": true + }, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/egrad.log b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/egrad.log new file mode 100644 index 0000000..432ded1 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/egrad.log @@ -0,0 +1,1349 @@ + + egrad (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:18:51.113 + + + + + e g r a d + + TURBOMOLE GmbH + + + integral direct evaluation of excited state + and polarizability gradients + and first-order nonadiabatic couplings + + + + references (see also programs escf, dscf and ridft) + + review + F. Furche and D. Rappoport, + "Density functional methods for excited states: + equilibrium structure and electronic spectra", + ch. III of "Computational Photochemistry", ed. by + M. Olivucci, vol. 16 of "Theoretical and Computational + Chemistry", Elsevier, Amsterdam, 2005. + + nonorthonormal Krylov space methods + F. Furche, B. T. Krull, B. D. Nguyen, J. Kwon, + J. Chem. Phys. 144 (2016), 174105. + + RI-J method + D. Rappoport and F. Furche, + J. Chem. Phys. 122 (2005), 064105. + + Lagrangian method, implementation, benchmarks + F. Furche and R. Ahlrichs, + J. Chem. Phys. 117 (2002), 7433; + J. Chem. Phys. 121 (2004), 12772 (E). + + Polarizability derivatives, Raman intensities + D. Rappoport and F. Furche, + J. Chem. Phys. 126 (2007), 201104. + + First-order nonadiabatic couplings + R. Send and F. Furche, + J. Chem. Phys. 132 (2010), 044107. + + + + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 -3.04112594 c 6.000 0 + 0.97212284 1.68376616 -3.67601852 h 1.000 0 + 0.97212284 -1.68376616 -3.67601852 h 1.000 0 + -1.94424569 0.00000000 -3.67601852 h 1.000 0 + 0.00000000 0.00000000 0.59622031 br 35.000 0 + + center of nuclear mass : 0.00000000 0.00000000 0.00000000 + center of nuclear charge: 0.00000000 0.00000000 -0.19107046 + + ************************************************************************* + dscf_escf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + c 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 3 4 2 def-SV(P) [2s|4s] + br 1 74 32 def-SV(P) [5s4p3d|14s10p6d] + --------------------------------------------------------------------------- + total: 5 110 52 + --------------------------------------------------------------------------- + + total number of primitive shells : 46 + total number of contracted shells : 24 + total number of cartesian basis functions : 56 + total number of SCF-basis functions : 52 + + + residuum convergence criterium : 0.10E-04 + + + integral neglect threshold : 0.33E-10 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + RPA SINGLET-EXCITATION-CALCULATION + + FOUND DFT-FLAG ! + + + symmetry group of the molecule : c1 + + the group has the following generators : + c1(z) + + 1 symmetry operations found + + there are 1 real representations : a + + maximum number of shells which are related by symmetry : 1 + + IRREP of excited state : a + + + determining totally symmetric integral contributions + - equivalent to irreducible tensor elements - + which can be formed within each triple of representations : + + representation triple contributions + + a a a 1 + + mo occupation : + irrep mo's occupied + a 52 22 + + number of basis functions : 52 + number of occupied orbitals : 22 + + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 5 + partition function : becke + partition sharpness : 3 + + + biggest AO integral is expected to be 21.668154127 + MOs are in ASCII format ! + + + reading orbital data $scfmo from file mos + orbital characterization : scfconv=7 + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 7239 + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 43.99958460687699 + + + + number of non-frozen orbitals : 52 + number of non-frozen occupied orbitals : 22 + + + + ------------------- + excitation vector + ------------------- + + + dimension of super-tensorspace: 1 + + IRREP tensor space dimension number of roots + + a 660 10 + + maximum number of Davidson iterations set to 35 + + + machine precision: 2.22D-16 + + + logfile sing_a will be constructed + + + Nonorthonormal Krylov Space Iteration + + + total number of roots to be determined: 10 + + + maximum core memory set to 500 MB, + corresponding to 19574 vectors in CAO basis + + + maximum number of simultaneously treated vectors (including degeneracy): 18 + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 1 a 0 1.104386619886686D-01 + + 2 a 0 1.902291898698895D-02 + + 3 a 1 1.947444159125122D-03 + + 4 a 3 3.571762018184652D-04 + + 5 a 7 4.812820204236434D-05 + + 6 a 10 8.137193887116020D-06 + + + converged! + + + Switching to fine grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 26176 + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 43.99999821247488 + + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 7 a 0 6.542429715608330D-05 + + + NOTE: Residual norms are larger than 1.00D-05 due to mgrid option! + + Eigenpairs written on logfile sing_a + + + + IRREP Vector Eigenvalue Euclidean residual norm + + a 1 5.269336246055234D-02 2.645478730425349D-05 + 2 5.270288009901038D-02 2.216277891016276D-05 + 3 8.897711088151687D-02 5.991406726155704D-05 + 4 8.898823387628767D-02 3.602868681480302D-05 + 5 1.143532453863001D-01 3.563924925936307D-05 + 6 1.153715401869876D-01 6.214614830637916D-05 + 7 1.153764242650014D-01 2.181209067902979D-05 + 8 1.167699081899149D-01 5.751062360370067D-05 + 9 1.509435187985302D-01 5.321605818187117D-05 + 10 1.509626845321396D-01 6.542429715608330D-05 + + + + + + + Selection rules for point group c1 + + + Subduction with respect to c1 : + + Polar vector representation: a + + Axial vector representation: a + + Symmetric second rank tensor representation: a + + + + + Ground state + + + Total energy: -2614.005271607000 + + Charge: + + elec nuc total + + -44.000000 44.000000 -0.000000 + + + Electric dipole moment: + + elec nuc total + + x 0.000330 0.000000 0.000330 Norm: 0.683946 + y 0.000000 0.000000 0.000000 + z 7.723155 -8.407100 -0.683946 Norm / debye: 1.738430 + + + Electric quadrupole moment: + + elec nuc total + + xx -24.580334 5.670137 -18.910197 + yy -24.579829 5.670137 -18.909692 1/3*trace: -17.982284 + zz -124.598736 108.471772 -16.126964 + xy 0.000000 0.000000 0.000000 + xz -0.000361 0.000000 -0.000361 Anisotropy: 2.782981 + yz 0.000000 0.000000 0.000000 + + + + ============================================================================== + + I R R E P a + + ============================================================================== + + + Excitation is electric dipole allowed + + Excitation is magnetic dipole allowed + + Excitation is electric quadrupole allowed + + + + + 1 singlet a excitation + + + Total energy: -2613.775721258578 + + Excitation energy: 0.2295503484217620 + + Excitation energy / eV: 6.246385471866101 + + Excitation energy / nm: 198.4895817987809 + + Excitation energy / cm^(-1): 50380.47794692255 + + + Oscillator strength: + + velocity representation: 0.1874376708800732E-03 + + length representation: 0.7973690669882280E-05 + + mixed representation: 0.3862082055225426E-04 + + + Rotatory strength: + + velocity representation: 0.3443918222886711E-15 + + velocity rep. / 10^(-40)erg*cm^3: 0.2224937045077348E-10 + + length representation: -0.4217176920994932E-15 + + length rep. / 10^(-40)erg*cm^3: -0.2724499407335523E-10 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 22 a -6.50 23 a -0.66 99.6 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.034997 Norm: 0.034997 + y 0.000000 + z -0.000188 Norm / debye: 0.088955 + + + Electric transition dipole moment (length rep.): + + x 0.007213 Norm: 0.007218 + y -0.000000 + z -0.000285 Norm / debye: 0.018347 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.001695 + y 0.001695 + z -0.000000 Norm / Bohr mag.: 0.464440 + + + Electric quadrupole transition moment: + + xx 0.091857 + yy -0.091224 1/3*trace: 0.000528 + zz 0.000951 + xy 0.000000 + xz -0.068729 Anisotropy: 0.198269 + yz 0.000000 + + + + + 2 singlet a excitation + + + Total energy: -2613.775700528467 + + Excitation energy: 0.2295710785334476 + + Excitation energy / eV: 6.246949567147826 + + Excitation energy / nm: 198.4716583250342 + + Excitation energy / cm^(-1): 50385.02768052912 + + + Oscillator strength: + + velocity representation: 0.1866474457253048E-03 + + length representation: 0.8181619354680342E-05 + + mixed representation: 0.3907784992099492E-04 + + + Rotatory strength: + + velocity representation: -0.1027297157898285E-14 + + velocity rep. / 10^(-40)erg*cm^3: -0.6636834428068115E-10 + + length representation: -0.1092918310414970E-14 + + length rep. / 10^(-40)erg*cm^3: -0.7060778679138806E-10 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 21 a -6.50 23 a -0.66 99.6 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.034922 + y 0.034922 + z 0.000000 Norm / debye: 0.088763 + + + Electric transition dipole moment (length rep.): + + x -0.000000 Norm: 0.007312 + y -0.007312 + z 0.000000 Norm / debye: 0.018584 + + + Magnetic transition dipole moment / i: + + x 0.001693 Norm: 0.001693 + y -0.000000 + z 0.000000 Norm / Bohr mag.: 0.463986 + + + Electric quadrupole transition moment: + + xx -0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.091425 + xz 0.000000 Anisotropy: 0.198657 + yz 0.069255 + + + + + 3 singlet a excitation + + + Total energy: -2613.706981293913 + + Excitation energy: 0.2982903130869604 + + Excitation energy / eV: 8.116895883082616 + + Excitation energy / nm: 152.7483483740115 + + Excitation energy / cm^(-1): 65467.15630614802 + + + Oscillator strength: + + velocity representation: 0.1073027892341213E-03 + + length representation: 0.7777246408912506E-05 + + mixed representation: 0.2888502825444619E-04 + + + Rotatory strength: + + velocity representation: 0.8229512014034795E-15 + + velocity rep. / 10^(-40)erg*cm^3: 0.5316661127797466E-10 + + length representation: 0.1138403339045834E-14 + + length rep. / 10^(-40)erg*cm^3: 0.7354633871531807E-10 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 22 a -6.50 24 a 1.60 99.8 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.023222 Norm: 0.023229 + y -0.000000 + z -0.000562 Norm / debye: 0.059043 + + + Electric transition dipole moment (length rep.): + + x -0.006253 Norm: 0.006254 + y -0.000000 + z -0.000061 Norm / debye: 0.015896 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.002314 + y -0.002314 + z 0.000000 Norm / Bohr mag.: 0.634145 + + + Electric quadrupole transition moment: + + xx -0.292201 + yy 0.291387 1/3*trace: -0.000338 + zz -0.000200 + xy 0.000000 + xz -1.084304 Anisotropy: 1.944884 + yz -0.000000 + + + + + 4 singlet a excitation + + + Total energy: -2613.706962649916 + + Excitation energy: 0.2983089570835707 + + Excitation energy / eV: 8.117403212260571 + + Excitation energy / nm: 152.7388017626152 + + Excitation energy / cm^(-1): 65471.24819041884 + + + Oscillator strength: + + velocity representation: 0.1075867217524565E-03 + + length representation: 0.7954267519213227E-05 + + mixed representation: 0.2925360774903150E-04 + + + Rotatory strength: + + velocity representation: -0.3361349873813562E-14 + + velocity rep. / 10^(-40)erg*cm^3: -0.2171593914748967E-09 + + length representation: -0.3198724574684410E-14 + + length rep. / 10^(-40)erg*cm^3: -0.2066530138816464E-09 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 21 a -6.50 24 a 1.60 99.8 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.023259 + y -0.023259 + z -0.000000 Norm / debye: 0.059119 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.006324 + y -0.006324 + z -0.000000 Norm / debye: 0.016075 + + + Magnetic transition dipole moment / i: + + x 0.002316 Norm: 0.002316 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.634699 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy -0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.291982 + xz 0.000000 Anisotropy: 1.945663 + yz -1.084719 + + + + + 5 singlet a excitation + + + Total energy: -2613.667110040014 + + Excitation energy: 0.3381615669858125 + + Excitation energy / eV: 9.201848368718936 + + Excitation energy / nm: 134.7384123693501 + + Excitation energy / cm^(-1): 74217.88503114450 + + + Oscillator strength: + + velocity representation: 0.8533283871364345E-06 + + length representation: 0.3451235507532225E-06 + + mixed representation: 0.5426819721780398E-06 + + + Rotatory strength: + + velocity representation: 0.4091426574037228E-14 + + velocity rep. / 10^(-40)erg*cm^3: 0.2643258626553275E-09 + + length representation: 0.3915471215385321E-14 + + length rep. / 10^(-40)erg*cm^3: 0.2529582990139252E-09 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 22 a -6.50 25 a 2.71 51.1 + 21 a -6.50 26 a 2.71 48.9 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.000000 Norm: 0.001946 + y -0.001946 + z 0.000000 Norm / debye: 0.004945 + + + Electric transition dipole moment (length rep.): + + x -0.000000 Norm: 0.001237 + y -0.001237 + z 0.000000 Norm / debye: 0.003145 + + + Magnetic transition dipole moment / i: + + x -0.000026 Norm: 0.001177 + y 0.000000 + z 0.001177 Norm / Bohr mag.: 0.322678 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy -0.000000 1/3*trace: -0.000000 + zz -0.000000 + xy -0.000342 + xz 0.000000 Anisotropy: 0.021206 + yz 0.012238 + + + + + 6 singlet a excitation + + + Total energy: -2613.665607743472 + + Excitation energy: 0.3396638635283236 + + Excitation energy / eV: 9.242727955102028 + + Excitation energy / nm: 134.1424789399200 + + Excitation energy / cm^(-1): 74547.60101001403 + + + Oscillator strength: + + velocity representation: 0.5018095102488236E-02 + + length representation: 0.2845517535934603E-02 + + mixed representation: 0.3778753045384154E-02 + + + Rotatory strength: + + velocity representation: -0.4824862741497650E-15 + + velocity rep. / 10^(-40)erg*cm^3: -0.3117093715998118E-10 + + length representation: 0.2242401648677876E-16 + + length rep. / 10^(-40)erg*cm^3: 0.1448699468219065E-11 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 22 a -6.50 26 a 2.71 50.3 + 21 a -6.50 25 a 2.71 49.5 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.148854 Norm: 0.148864 + y 0.000000 + z 0.001771 Norm / debye: 0.378378 + + + Electric transition dipole moment (length rep.): + + x 0.112087 Norm: 0.112099 + y 0.000000 + z 0.001634 Norm / debye: 0.284929 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.002253 + y -0.002253 + z 0.000000 Norm / Bohr mag.: 0.617611 + + + Electric quadrupole transition moment: + + xx -0.057449 + yy 0.056006 1/3*trace: -0.002577 + zz -0.006287 + xy 0.000000 + xz -1.101749 Anisotropy: 1.910822 + yz -0.000000 + + + + + 7 singlet a excitation + + + Total energy: -2613.665600553972 + + Excitation energy: 0.3396710530277807 + + Excitation energy / eV: 9.242923591420018 + + Excitation energy / nm: 134.1396396715428 + + Excitation energy / cm^(-1): 74549.17892275228 + + + Oscillator strength: + + velocity representation: 0.4993404807574566E-02 + + length representation: 0.2815298074725997E-02 + + mixed representation: 0.3749389675812880E-02 + + + Rotatory strength: + + velocity representation: 0.2271534556007381E-15 + + velocity rep. / 10^(-40)erg*cm^3: 0.1467520729513095E-10 + + length representation: -0.1914477435208092E-15 + + length rep. / 10^(-40)erg*cm^3: -0.1236844632155271E-10 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 21 a -6.50 26 a 2.71 51.0 + 22 a -6.50 25 a 2.71 48.8 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.148496 + y -0.148496 + z -0.000000 Norm / debye: 0.377442 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.111501 + y -0.111501 + z -0.000000 Norm / debye: 0.283409 + + + Magnetic transition dipole moment / i: + + x -0.002254 Norm: 0.002254 + y -0.000000 + z -0.000013 Norm / Bohr mag.: 0.617649 + + + Electric quadrupole transition moment: + + xx -0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy -0.056153 + xz -0.000000 Anisotropy: 1.906516 + yz 1.099294 + + + + + 8 singlet a excitation + + + Total energy: -2613.663555484773 + + Excitation energy: 0.3417161222270833 + + Excitation energy / eV: 9.298572779597306 + + Excitation energy / nm: 133.3368538863421 + + Excitation energy / cm^(-1): 74998.01973002516 + + + Oscillator strength: + + velocity representation: 0.3548900870746251E-01 + + length representation: 0.3127875409605586E-01 + + mixed representation: 0.3331743494423607E-01 + + + Rotatory strength: + + velocity representation: -0.3734965632042972E-14 + + velocity rep. / 10^(-40)erg*cm^3: -0.2412967689417897E-09 + + length representation: -0.3507404109756671E-14 + + length rep. / 10^(-40)erg*cm^3: -0.2265951985733564E-09 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 21 a -6.50 25 a 2.71 48.9 + 22 a -6.50 26 a 2.71 48.1 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000598 Norm: 0.394693 + y 0.000000 + z -0.394693 Norm / debye: 1.003218 + + + Electric transition dipole moment (length rep.): + + x 0.000312 Norm: 0.370542 + y 0.000000 + z -0.370542 Norm / debye: 0.941831 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000010 + y -0.000010 + z 0.000000 Norm / Bohr mag.: 0.002760 + + + Electric quadrupole transition moment: + + xx 0.178594 + yy 0.178825 1/3*trace: 0.602688 + zz 1.450645 + xy -0.000000 + xz -0.004183 Anisotropy: 1.271956 + yz -0.000000 + + + + + 9 singlet a excitation + + + Total energy: -2613.616757104312 + + Excitation energy: 0.3885145026875190 + + Excitation energy / eV: 10.57202205042061 + + Excitation energy / nm: 117.2758091263493 + + Excitation energy / cm^(-1): 85269.07699893738 + + + Oscillator strength: + + velocity representation: 0.1078092605577343E-01 + + length representation: 0.9014111779556780E-02 + + mixed representation: 0.9858015649910377E-02 + + + Rotatory strength: + + velocity representation: -0.1512884123499743E-14 + + velocity rep. / 10^(-40)erg*cm^3: -0.9773960104263138E-10 + + length representation: -0.1391349007115093E-14 + + length rep. / 10^(-40)erg*cm^3: -0.8988784716168882E-10 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 19 a -10.95 23 a -0.66 99.7 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.000000 Norm: 0.204019 + y -0.204019 + z 0.000000 Norm / debye: 0.518568 + + + Electric transition dipole moment (length rep.): + + x -0.000000 Norm: 0.186554 + y -0.186554 + z 0.000000 Norm / debye: 0.474175 + + + Magnetic transition dipole moment / i: + + x 0.001684 Norm: 0.001684 + y -0.000000 + z 0.000000 Norm / Bohr mag.: 0.461490 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy -0.000000 1/3*trace: -0.000000 + zz -0.000000 + xy -0.162467 + xz 0.000000 Anisotropy: 1.761935 + yz 1.004196 + + + + + 10 singlet a excitation + + + Total energy: -2613.616732439692 + + Excitation energy: 0.3885391673076726 + + Excitation energy / eV: 10.57269320917099 + + Excitation energy / nm: 117.2683644115594 + + Excitation energy / cm^(-1): 85274.49025733696 + + + Oscillator strength: + + velocity representation: 0.1084619388674289E-01 + + length representation: 0.9071251670532842E-02 + + mixed representation: 0.9919087687389255E-02 + + + Rotatory strength: + + velocity representation: -0.3759820374452775E-15 + + velocity rep. / 10^(-40)erg*cm^3: -0.2429025050119997E-10 + + length representation: -0.1946472499338951E-15 + + length rep. / 10^(-40)erg*cm^3: -0.1257514984596075E-10 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 18 a -10.96 23 a -0.66 99.7 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.204509 Norm: 0.204629 + y -0.000000 + z 0.007015 Norm / debye: 0.520119 + + + Electric transition dipole moment (length rep.): + + x 0.187017 Norm: 0.187138 + y -0.000000 + z 0.006716 Norm / debye: 0.475661 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.001681 + y 0.001681 + z 0.000000 Norm / Bohr mag.: 0.460837 + + + Electric quadrupole transition moment: + + xx -0.166266 + yy 0.160750 1/3*trace: -0.008098 + zz -0.018779 + xy -0.000000 + xz -1.006165 Anisotropy: 1.765663 + yz 0.000000 + + SUMMARY OF EXCITATION ENERGIES AND DIPOLE OSCILLATOR STRENGTHS (velocity/length): + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a | 0.229550 | 6.24638 | 50380.478 | 198.490 | 0.00019 | 0.00001 | + | 2 a | 0.229571 | 6.24695 | 50385.028 | 198.472 | 0.00019 | 0.00001 | + | 3 a | 0.298290 | 8.11689 | 65467.156 | 152.748 | 0.00011 | 0.00001 | + | 4 a | 0.298309 | 8.11740 | 65471.248 | 152.739 | 0.00011 | 0.00001 | + | 5 a | 0.338162 | 9.20184 | 74217.885 | 134.738 | 0.00000 | 0.00000 | + | 6 a | 0.339664 | 9.24272 | 74547.601 | 134.142 | 0.00502 | 0.00285 | + | 7 a | 0.339671 | 9.24292 | 74549.179 | 134.140 | 0.00499 | 0.00282 | + | 8 a | 0.341716 | 9.29857 | 74998.020 | 133.337 | 0.03549 | 0.03128 | + | 9 a | 0.388515 | 10.57202 | 85269.077 | 117.276 | 0.01078 | 0.00901 | + | 10 a | 0.388539 | 10.57269 | 85274.490 | 117.268 | 0.01085 | 0.00907 | + ----------------------------------------------------------------------------------------------- + + + + IRREP tensor space dimension number of roots + + a 660 10 + + + Data group $exopt missing or empty + Default state chosen: 10 + + + + Excited state no. 10 chosen for optimization + + + IRREP tensor space dimension number of roots + + a 660 1 + + ---------------------- + CPKS right-hand side + ---------------------- + + + IRREP tensor space dimension number of roots + + a 660 1 + + ---------------- + CPKS equations + ---------------- + + + logfile dipl_a will be constructed + + Switching to coarse grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 7239 + + + Nonorthonormal Krylov Space Iteration + + + total number of roots to be determined: 1 + + + maximum core memory set to 500 MB, + corresponding to 19574 vectors in CAO basis + + + maximum number of simultaneously treated vectors (including degeneracy): 1 + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 1 a 0 9.743469059530967D-02 + + 2 a 0 1.990920547140672D-02 + + 3 a 0 6.996988041876034D-03 + + 4 a 0 9.481661616143224D-04 + + 5 a 0 1.415418661365726D-04 + + 6 a 0 3.134156472262940D-05 + + 7 a 1 4.261491170239483D-06 + + + converged! + + + Switching to fine grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 26176 + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 8 a 0 2.468073088118960D-05 + + + NOTE: Residual norms are larger than 1.00D-05 due to mgrid option! + + Eigenpairs written on logfile dipl_a + + + + IRREP Vector Frequency Euclidean residual norm + + a 1 0.000000000000000D+00 2.468073088118960D-05 + + + + ------------------- + relaxed densities + ------------------- + + + ---------------------------------------- + S+T+V CONTRIBUTIONS TO ENERGY GRADIENT + ---------------------------------------- + + 1e-integral 1st. derivatives will be neglected if expon. factor < 0.100000E-10 + + + ----------------------------------------------- + TWO ELECTRON CONTRIBUTIONS TO ENERGY GRADIENT + ----------------------------------------------- + + biggest 1-particle AO density matrix element is expected to be 3.2223765705 + + core memory to be involved in 2e-gradient : + symmetry shell pair data : 1 + two particle density+dens. estimates : 1596 + derivative integrals : 8498 + derivative integral bound : 900 + totally : 9396 + + + setting up bound for integral derivative estimation + + increment for numerical differentiation : 0.00050000 + + biggest AO integral is expected to be 21.668154127 + biggest cartesian 1st derivative AO integral is expected to be 83.347447328 + + 2e-integral 1st. derivatives will be neglected if expon. factor < 0.100000E-06 + outer boundary for 2e-integral derivative neglection is 0.160508E-08 + + Integrated ground state density : 43.99999821247506 + + + ------------------------------------------------ + cartesian gradient of the energy (hartree/bohr) + ------------------------------------------------ + + ATOM 1 c 2 h 3 h 4 h 5 br +dE/dx -0.9995971D-01 0.1575100D-01 0.1575100D-01 0.7003746D-01 -0.1572360D-02 +dE/dy -0.5400182D-09 -0.4220280D-01 0.4220280D-01 0.3083048D-09 0.1328706D-09 +dE/dz 0.6344875D-01 0.2783363D-01 0.2783363D-01 0.6391954D-01 -0.1830458D+00 + + resulting FORCE (fx,fy,fz) = (0.738D-05,0.535D-13,-.102D-04) + resulting MOMENT (mx,my,mz) = (-.340D-09,-.484D-04,-.474D-09) + + + ********************************************************************** + |maximum component of gradient| : 0.18304580 (atom 5 br) + gradient norm : 0.24924815 + ********************************************************************** + + exx = -0.105546 eyy = -0.142119 ezz = -0.741695 + eyz = 0.000000 exz = -0.070184 exy = -0.000000 + + + : data group $grad is missing + + *** cartesian gradients written onto *** + + + + ============================================================================== + electrostatic moments + ============================================================================== + + reference point for electrostatic moments: 0.00000 0.00000 0.00000 + + + nuc gs,e -> gs,tot excit -> total + ------------------------------------------------------------------------------ + charge + ------------------------------------------------------------------------------ + 44.000000 -44.000000 0.000000 0.000000 0.000000 + + ------------------------------------------------------------------------------ + dipole moment + ------------------------------------------------------------------------------ + x 0.000000 0.000330 0.000330 -0.219984 -0.219654 + y 0.000000 0.000000 0.000000 -0.000000 -0.000000 + z -8.407100 7.723155 -0.683946 -1.040346 -1.724291 + + | dipole moment | = 1.7382 a.u. = 4.4181 debye + + ------------------------------------------------------------------------------ + quadrupole moment + ------------------------------------------------------------------------------ + xx 5.670137 -24.580334 -18.910197 1.118252 -17.791945 + yy 5.670137 -24.579829 -18.909692 -0.351879 -19.261571 + zz 108.471772 -124.598736 -16.126964 -0.293496 -16.420460 + xy 0.000000 0.000000 0.000000 -0.000000 -0.000000 + xz 0.000000 -0.000361 -0.000361 0.878984 0.878623 + yz 0.000000 0.000000 0.000000 0.000000 0.000000 + + 1/3 trace= -17.824659 + anisotropy= 2.893489 + + ============================================================================== + + + + ------------------------------------------------------------------------ + total cpu-time : 3.21 seconds + total wall-time : 5.58 seconds + ------------------------------------------------------------------------ + + **** egrad : all done **** + + + 2023-01-25 00:18:56.545 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/ref_output.json new file mode 100644 index 0000000..fe68dd8 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/ref_output.json @@ -0,0 +1,949 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "EgradOutput", + "@version": "1.3.0", + "gradients": [ + [ + -0.09995971, + -5.400182e-10, + 0.06344875 + ], + [ + 0.015751, + -0.0422028, + 0.02783363 + ], + [ + 0.015751, + 0.0422028, + 0.02783363 + ], + [ + 0.07003746, + 3.083048e-10, + 0.06391954 + ], + [ + -0.00157236, + 1.328706e-10, + -0.1830458 + ] + ], + "dielectric": [ + [ + -0.105546, + -0.0, + -0.070184 + ], + [ + -0.0, + -0.142119, + 0.0 + ], + [ + -0.070184, + 0.0, + -0.741695 + ] + ], + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": null, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "escf": { + "@module": "turbomoleio.output.data", + "@class": "EscfData", + "@version": "1.3.0", + "calc_type": "RPA SINGLET-EXCITATION", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "EscfIterationData", + "@version": "1.3.0", + "steps": [ + [ + [ + "a", + 0, + 0.1104386619886686 + ] + ], + [ + [ + "a", + 0, + 0.01902291898698895 + ] + ], + [ + [ + "a", + 1, + 0.001947444159125122 + ] + ], + [ + [ + "a", + 3, + 0.0003571762018184652 + ] + ], + [ + [ + "a", + 7, + 4.812820204236434e-05 + ] + ], + [ + [ + "a", + 10, + 8.13719388711602e-06 + ] + ] + ], + "converged": true + }, + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 22, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 19574, + "max_treated_vectors": 18, + "irrep_data": { + "a": { + "tensor_space_dim": 660, + "n_roots": 10 + } + }, + "gs_tot_en": -2614.005271607, + "excitations": { + "a": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.775721258578, + "osc_stre": 7.97369066988228e-06, + "rot_stre": -4.217176920994932e-16, + "dominant_contributions": [ + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 23, + "irrep": "a", + "energy": -0.66, + "spin": null + }, + "coeff": 99.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.007213, + -0.0, + -0.000285 + ], + "magnetic_dipole": [ + 0.0, + 0.001695, + -0.0 + ], + "electric_quadrupole": { + "trace": 0.0015840000000000001, + "anisotropy": 0.198269, + "moment": [ + [ + 0.091857, + 0.0, + -0.068729 + ], + [ + 0.0, + -0.091224, + 0.0 + ], + [ + -0.068729, + 0.0, + 0.000951 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.775700528467, + "osc_stre": 8.181619354680342e-06, + "rot_stre": -1.09291831041497e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 23, + "irrep": "a", + "energy": -0.66, + "spin": null + }, + "coeff": 99.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.0, + -0.007312, + 0.0 + ], + "magnetic_dipole": [ + 0.001693, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.198657, + "moment": [ + [ + -0.0, + 0.091425, + 0.0 + ], + [ + 0.091425, + 0.0, + 0.069255 + ], + [ + 0.0, + 0.069255, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.706981293913, + "osc_stre": 7.777246408912506e-06, + "rot_stre": 1.138403339045834e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 24, + "irrep": "a", + "energy": 1.6, + "spin": null + }, + "coeff": 99.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.006253, + -0.0, + -6.1e-05 + ], + "magnetic_dipole": [ + 0.0, + -0.002314, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.001014, + "anisotropy": 1.944884, + "moment": [ + [ + -0.292201, + 0.0, + -1.084304 + ], + [ + 0.0, + 0.291387, + -0.0 + ], + [ + -1.084304, + -0.0, + -0.0002 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.706962649916, + "osc_stre": 7.954267519213227e-06, + "rot_stre": -3.19872457468441e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 24, + "irrep": "a", + "energy": 1.6, + "spin": null + }, + "coeff": 99.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.006324, + -0.0 + ], + "magnetic_dipole": [ + 0.002316, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.945663, + "moment": [ + [ + 0.0, + 0.291982, + 0.0 + ], + [ + 0.291982, + -0.0, + -1.084719 + ], + [ + 0.0, + -1.084719, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.667110040014, + "osc_stre": 3.451235507532225e-07, + "rot_stre": 3.915471215385321e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 25, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 51.1 + }, + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 26, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 48.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.0, + -0.001237, + 0.0 + ], + "magnetic_dipole": [ + -2.6e-05, + 0.0, + 0.001177 + ], + "electric_quadrupole": { + "trace": -0.0, + "anisotropy": 0.021206, + "moment": [ + [ + 0.0, + -0.000342, + 0.0 + ], + [ + -0.000342, + -0.0, + 0.012238 + ], + [ + 0.0, + 0.012238, + -0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.665607743472, + "osc_stre": 0.002845517535934603, + "rot_stre": 2.242401648677876e-17, + "dominant_contributions": [ + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 26, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 50.3 + }, + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 25, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 49.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.112087, + 0.0, + 0.001634 + ], + "magnetic_dipole": [ + 0.0, + -0.002253, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.007731, + "anisotropy": 1.910822, + "moment": [ + [ + -0.057449, + 0.0, + -1.101749 + ], + [ + 0.0, + 0.056006, + -0.0 + ], + [ + -1.101749, + -0.0, + -0.006287 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.665600553972, + "osc_stre": 0.002815298074725997, + "rot_stre": -1.914477435208092e-16, + "dominant_contributions": [ + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 26, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 51.0 + }, + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 25, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 48.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.111501, + -0.0 + ], + "magnetic_dipole": [ + -0.002254, + -0.0, + -1.3e-05 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.906516, + "moment": [ + [ + -0.0, + -0.056153, + -0.0 + ], + [ + -0.056153, + 0.0, + 1.099294 + ], + [ + -0.0, + 1.099294, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.663555484773, + "osc_stre": 0.03127875409605586, + "rot_stre": -3.507404109756671e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 25, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 48.9 + }, + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 26, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 48.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.000312, + 0.0, + -0.370542 + ], + "magnetic_dipole": [ + 0.0, + -1e-05, + 0.0 + ], + "electric_quadrupole": { + "trace": 1.808064, + "anisotropy": 1.271956, + "moment": [ + [ + 0.178594, + -0.0, + -0.004183 + ], + [ + -0.0, + 0.178825, + -0.0 + ], + [ + -0.004183, + -0.0, + 1.450645 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.616757104312, + "osc_stre": 0.00901411177955678, + "rot_stre": -1.391349007115093e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 19, + "irrep": "a", + "energy": -10.95, + "spin": null + }, + "virt_orb": { + "index": 23, + "irrep": "a", + "energy": -0.66, + "spin": null + }, + "coeff": 99.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.0, + -0.186554, + 0.0 + ], + "magnetic_dipole": [ + 0.001684, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.0, + "anisotropy": 1.761935, + "moment": [ + [ + 0.0, + -0.162467, + 0.0 + ], + [ + -0.162467, + -0.0, + 1.004196 + ], + [ + 0.0, + 1.004196, + -0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.616732439692, + "osc_stre": 0.009071251670532842, + "rot_stre": -1.946472499338951e-16, + "dominant_contributions": [ + { + "occ_orb": { + "index": 18, + "irrep": "a", + "energy": -10.96, + "spin": null + }, + "virt_orb": { + "index": 23, + "irrep": "a", + "energy": -0.66, + "spin": null + }, + "coeff": 99.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.187017, + -0.0, + 0.006716 + ], + "magnetic_dipole": [ + 0.0, + 0.001681, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.024293999999999996, + "anisotropy": 1.765663, + "moment": [ + [ + -0.166266, + -0.0, + -1.006165 + ], + [ + -0.0, + 0.16075, + 0.0 + ], + [ + -1.006165, + 0.0, + -0.018779 + ] + ] + } + } + ] + } + ] + } + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + 0.0, + 0.0, + 0.0 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.19107046 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "C", + "species": [ + { + "element": "C", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + -1.609294542933964 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 0.5144252531263033, + 0.8910106803616544, + -1.9452652276413738 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 0.5144252531263033, + -0.8910106803616544, + -1.9452652276413738 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -1.0288505115443787, + 0.0, + -1.9452652276413738 + ], + "properties": {} + }, + { + "name": "Br", + "species": [ + { + "element": "Br", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + 0.315506200729522 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "c": "def-SV(P)", + "h": "def-SV(P)", + "br": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 52, + "number_scf_aux_basis_func": null + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:51.113000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:56.545000" + }, + "cpu_time": 3.21, + "wall_time": 5.58 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "egrad" + }, + "cosmo": null, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 3.3e-11, + "thize": 1e-05, + "thime": 5 + }, + "ex_state": 10 +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/ref_parser.json new file mode 100644 index 0000000..272992b --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/ref_parser.json @@ -0,0 +1,919 @@ +{ + "all_done": true, + "header": { + "executable": "egrad", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:51.113000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + 0.0 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.19107046 + ] + }, + "coordinates": { + "coords": [ + [ + 0.0, + 0.0, + -3.04112594 + ], + [ + 0.97212284, + 1.68376616, + -3.67601852 + ], + [ + 0.97212284, + -1.68376616, + -3.67601852 + ], + [ + -1.94424569, + 0.0, + -3.67601852 + ], + [ + 0.0, + 0.0, + 0.59622031 + ] + ], + "species": [ + "c", + "h", + "h", + "h", + "br" + ], + "charges": [ + 6.0, + 1.0, + 1.0, + 1.0, + 35.0 + ], + "isotopes": [ + 0, + 0, + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "c": "def-SV(P)", + "h": "def-SV(P)", + "br": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 52, + "number_scf_aux_basis_func": null + }, + "symmetry": { + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": null, + "pre_scf_run": null, + "scf_iterations": null, + "scf_energies": null, + "cosmo_results": null, + "electrostatic_moments": { + "unrestricted_electrons": null, + "charge": 0.0, + "dipole": { + "norm": 1.7382, + "moment": [ + -0.219654, + -0.0, + -1.724291 + ] + }, + "quadrupole": { + "trace": -53.473977000000005, + "anisotropy": 2.893489, + "moment": [ + [ + -17.791945, + -0.0, + 0.878623 + ], + [ + -0.0, + -19.261571, + 0.0 + ], + [ + 0.878623, + 0.0, + -16.42046 + ] + ] + } + }, + "timings": { + "cpu_time": 3.21, + "wall_time": 5.58, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:56.545000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 3.3e-11, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": { + "calc_type": "RPA SINGLET-EXCITATION", + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 22, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 19574, + "max_treated_vectors": 18, + "irrep_data": { + "a": { + "tensor_space_dim": 660, + "n_roots": 10 + } + } + }, + "escf_iterations": { + "steps": [ + [ + [ + "a", + 0, + 0.1104386619886686 + ] + ], + [ + [ + "a", + 0, + 0.01902291898698895 + ] + ], + [ + [ + "a", + 1, + 0.001947444159125122 + ] + ], + [ + [ + "a", + 3, + 0.0003571762018184652 + ] + ], + [ + [ + "a", + 7, + 4.812820204236434e-05 + ] + ], + [ + [ + "a", + 10, + 8.13719388711602e-06 + ] + ] + ], + "converged": true + }, + "escf_gs_total_en": -2614.005271607, + "escf_excitations": { + "a": [ + { + "tot_en": -2613.775721258578, + "osc_stre": 7.97369066988228e-06, + "rot_stre": -4.217176920994932e-16, + "dominant_contributions": [ + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 23, + "irrep": "a", + "energy": -0.66, + "spin": null + }, + "coeff": 99.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.007213, + -0.0, + -0.000285 + ], + "magnetic_dipole": [ + 0.0, + 0.001695, + -0.0 + ], + "electric_quadrupole": { + "trace": 0.0015840000000000001, + "anisotropy": 0.198269, + "moment": [ + [ + 0.091857, + 0.0, + -0.068729 + ], + [ + 0.0, + -0.091224, + 0.0 + ], + [ + -0.068729, + 0.0, + 0.000951 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.775700528467, + "osc_stre": 8.181619354680342e-06, + "rot_stre": -1.09291831041497e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 23, + "irrep": "a", + "energy": -0.66, + "spin": null + }, + "coeff": 99.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.0, + -0.007312, + 0.0 + ], + "magnetic_dipole": [ + 0.001693, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.198657, + "moment": [ + [ + -0.0, + 0.091425, + 0.0 + ], + [ + 0.091425, + 0.0, + 0.069255 + ], + [ + 0.0, + 0.069255, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.706981293913, + "osc_stre": 7.777246408912506e-06, + "rot_stre": 1.138403339045834e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 24, + "irrep": "a", + "energy": 1.6, + "spin": null + }, + "coeff": 99.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.006253, + -0.0, + -6.1e-05 + ], + "magnetic_dipole": [ + 0.0, + -0.002314, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.001014, + "anisotropy": 1.944884, + "moment": [ + [ + -0.292201, + 0.0, + -1.084304 + ], + [ + 0.0, + 0.291387, + -0.0 + ], + [ + -1.084304, + -0.0, + -0.0002 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.706962649916, + "osc_stre": 7.954267519213227e-06, + "rot_stre": -3.19872457468441e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 24, + "irrep": "a", + "energy": 1.6, + "spin": null + }, + "coeff": 99.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.006324, + -0.0 + ], + "magnetic_dipole": [ + 0.002316, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.945663, + "moment": [ + [ + 0.0, + 0.291982, + 0.0 + ], + [ + 0.291982, + -0.0, + -1.084719 + ], + [ + 0.0, + -1.084719, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.667110040014, + "osc_stre": 3.451235507532225e-07, + "rot_stre": 3.915471215385321e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 25, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 51.1 + }, + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 26, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 48.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.0, + -0.001237, + 0.0 + ], + "magnetic_dipole": [ + -2.6e-05, + 0.0, + 0.001177 + ], + "electric_quadrupole": { + "trace": -0.0, + "anisotropy": 0.021206, + "moment": [ + [ + 0.0, + -0.000342, + 0.0 + ], + [ + -0.000342, + -0.0, + 0.012238 + ], + [ + 0.0, + 0.012238, + -0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.665607743472, + "osc_stre": 0.002845517535934603, + "rot_stre": 2.242401648677876e-17, + "dominant_contributions": [ + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 26, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 50.3 + }, + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 25, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 49.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.112087, + 0.0, + 0.001634 + ], + "magnetic_dipole": [ + 0.0, + -0.002253, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.007731, + "anisotropy": 1.910822, + "moment": [ + [ + -0.057449, + 0.0, + -1.101749 + ], + [ + 0.0, + 0.056006, + -0.0 + ], + [ + -1.101749, + -0.0, + -0.006287 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.665600553972, + "osc_stre": 0.002815298074725997, + "rot_stre": -1.914477435208092e-16, + "dominant_contributions": [ + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 26, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 51.0 + }, + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 25, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 48.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.111501, + -0.0 + ], + "magnetic_dipole": [ + -0.002254, + -0.0, + -1.3e-05 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.906516, + "moment": [ + [ + -0.0, + -0.056153, + -0.0 + ], + [ + -0.056153, + 0.0, + 1.099294 + ], + [ + -0.0, + 1.099294, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.663555484773, + "osc_stre": 0.03127875409605586, + "rot_stre": -3.507404109756671e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 25, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 48.9 + }, + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 26, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 48.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.000312, + 0.0, + -0.370542 + ], + "magnetic_dipole": [ + 0.0, + -1e-05, + 0.0 + ], + "electric_quadrupole": { + "trace": 1.808064, + "anisotropy": 1.271956, + "moment": [ + [ + 0.178594, + -0.0, + -0.004183 + ], + [ + -0.0, + 0.178825, + -0.0 + ], + [ + -0.004183, + -0.0, + 1.450645 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.616757104312, + "osc_stre": 0.00901411177955678, + "rot_stre": -1.391349007115093e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 19, + "irrep": "a", + "energy": -10.95, + "spin": null + }, + "virt_orb": { + "index": 23, + "irrep": "a", + "energy": -0.66, + "spin": null + }, + "coeff": 99.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.0, + -0.186554, + 0.0 + ], + "magnetic_dipole": [ + 0.001684, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.0, + "anisotropy": 1.761935, + "moment": [ + [ + 0.0, + -0.162467, + 0.0 + ], + [ + -0.162467, + -0.0, + 1.004196 + ], + [ + 0.0, + 1.004196, + -0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.616732439692, + "osc_stre": 0.009071251670532842, + "rot_stre": -1.946472499338951e-16, + "dominant_contributions": [ + { + "occ_orb": { + "index": 18, + "irrep": "a", + "energy": -10.96, + "spin": null + }, + "virt_orb": { + "index": 23, + "irrep": "a", + "energy": -0.66, + "spin": null + }, + "coeff": 99.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.187017, + -0.0, + 0.006716 + ], + "magnetic_dipole": [ + 0.0, + 0.001681, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.024293999999999996, + "anisotropy": 1.765663, + "moment": [ + [ + -0.166266, + -0.0, + -1.006165 + ], + [ + -0.0, + 0.16075, + 0.0 + ], + [ + -1.006165, + 0.0, + -0.018779 + ] + ] + } + } + ] + } + ] + }, + "rdgrad_memory": null, + "gradient": { + "gradients": [ + [ + -0.09995971, + -5.400182e-10, + 0.06344875 + ], + [ + 0.015751, + -0.0422028, + 0.02783363 + ], + [ + 0.015751, + 0.0422028, + 0.02783363 + ], + [ + 0.07003746, + 3.083048e-10, + 0.06391954 + ], + [ + -0.00157236, + 1.328706e-10, + -0.1830458 + ] + ], + "dielectric": [ + [ + -0.105546, + -0.0, + -0.070184 + ], + [ + -0.0, + -0.142119, + 0.0 + ], + [ + -0.070184, + 0.0, + -0.741695 + ] + ] + }, + "egrad_excited_state": { + "index": 10, + "default": true + }, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/escf.log b/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/escf.log new file mode 100644 index 0000000..a5099dc --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/escf.log @@ -0,0 +1,1257 @@ + operating system is UNIX ! + + escf (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:19:15.731 + + + + + e s c f + + TURBOMOLE GmbH + + + integral direct evaluation of + + * excitation energies and transition moments + * dynamic response properties + * stabilities + + + + references (see also programs dscf and ridft) + + implementation and benchmarks (review) + F. Furche and D. Rappoport, + "Density functional methods for excited states: + equilibrium structure and electronic spectra", + ch. III of "Computational Photochemistry", ed. by + M. Olivucci, vol. 16 of "Theoretical and Computational + Chemistry", Elsevier, Amsterdam, 2005. + + Bethe-Salpeter equation + K. Krause and W. Klopper, + J. Comput. Chem. 38 (2017) 383. + + 2c BSE, GW and hybrid TD-DFT + C. Holzer and W. Klopper + J. Chem. Phys. 150, 204116 (2019) + + nonorthonormal Krylov space methods + F. Furche, B. T. Krull, B. D. Nguyen, and J. Kwon, + J. Chem. Phys. 144 (2016), 174105. + + two-component GW quasi particle energies + M. Kuehn and F. Weigend, + J. Chem. Theory Comput. 11 (2015), 969. + + two-component TDDFT with spin-orbit coupling + M. Kuehn and F. Weigend, + J. Chem. Theory Comput. 9 (2013), 5341. + M. Kuehn and F. Weigend, + J. Chem. Phys. 142 (2015), 034116. + + GW quasi particle energies + M. J. van Setten, F. Weigend, and F. Evers, + J. Chem. Theory Comput. 9 (2013), 232. + + Fast GW methods: RIGW, contour deformation + J. Chem. Phys. 150, 204116 (2019) + + current-density dependent meta-GGA Linear Response + J. E. Bates and F. Furche, + J. Chem. Phys. 137 (2012), 164105. + + spin-flip method + M. Kuehn and F. Weigend, + Chem. Phys. Chem. 12 (2011), 3331. + + RI-J method + R. Bauernschmitt, M. Haeser, O. Treutler, and R. Ahlrichs, + Chem. Phys. Lett. 264 (1997), 573. + + density functional implementation + R. Bauernschmitt and R. Ahlrichs, + Chem. Phys. Lett. 256 (1996), 454. + R. Bauernschmitt and R. Ahlrichs, + J. Chem. Phys. 104 (1996), 9047. + + UHF extension (RPA and CIS) + C. Ochsenfeld, J. Gauss, and R. Ahlrichs, + J. Chem. Phys. 103 (1995), 7401. + + integral direct algorithm + H. Weiss, R. Ahlrichs, and M. Haeser, + J. Chem. Phys. 99 (1993), 1262. + + Seminumerical and pseudospectral algorithms + C. Holzer, J. Chem. Phys. 153 (2020), 184115. + + Two-component static/dynamic polarizabilities, + and relativistic damped-response approach, + polarizabilities and damped response at GW-BSE level + M. Kehry, Y. J. Franzke, C. Holzer, and W. Klopper, + Mol. Phys. 118 (2020), e1755064 + + Nuclear spin-spin coupling constants + F. Mack, C. J. Schattenberg, M. Kaupp, F. Weigend, + J. Phys. Chem. A 2020, 124, 41, 8529 + + + + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 2.91365085 0.00000000 2.47857830 al 13.000 0 + -1.45682542 2.52329565 2.47857830 al 13.000 0 + -1.45682542 -2.52329565 2.47857830 al 13.000 0 + 2.91365085 0.00000000 -2.47857830 al 13.000 0 + -1.45682542 -2.52329565 -2.47857830 al 13.000 0 + -1.45682542 2.52329565 -2.47857830 al 13.000 0 + + center of nuclear mass : 0.00000000 0.00000000 0.00000000 + center of nuclear charge: 0.00000000 0.00000000 0.00000000 + + ************************************************************************* + Al6 triplett + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + al 6 36 18 def-SV(P) [4s3p1d|10s7p1d] + --------------------------------------------------------------------------- + total: 6 216 108 + --------------------------------------------------------------------------- + + total number of primitive shells : 18 + total number of contracted shells : 48 + total number of cartesian basis functions : 114 + total number of SCF-basis functions : 108 + + + residuum convergence criterium : 0.10E-04 + + + integral neglect threshold : 0.29E-10 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + FOUND RI-J FLAG ! + + + AUXILIARY BASIS SET information: + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + al 6 56 31 def-SV(P) [5s3p2d1f|12s4p5d1f] + --------------------------------------------------------------------------- + total: 6 336 186 + --------------------------------------------------------------------------- + + total number of primitive shells : 22 + total number of contracted shells : 66 + total number of cartesian basis functions : 216 + total number of SCF-basis functions : 186 + + RPA UHF-EXCITATION-CALCULATION (spin-conserved) + + FOUND DFT-FLAG ! + + + symmetry group of the molecule : d3h + + the group has the following generators : + c3(z) + c2(x) + mirror plane sigma(xy) + + 12 symmetry operations found + + there are 6 real representations : a1' a2' e' a1" a2" e" + + maximum number of shells which are related by symmetry : 6 + + IRREPs of excited states : a1' a2' e' a1" a2" e" + + mo occupation : + irrep mo's occupied + a1' 13 7 + a2' 5 1 + e' 18 7 + a1" 5 1 + a2" 13 5 + e" 18 6 + + number of basis functions : 108 + number of occupied orbitals : 40 + + ALPHA-Occupation: 40 + BETA-Occupation : 38 + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 1 + partition function : becke + partition sharpness : 3 + + grid rotated due to d3 symmetry + + ---------------------- + RI - INFORMATION + ---------------------- + + biggest AO integral is expected to be 7.882179841 + + Threshold for integral neglect (rithr2): 0.29E-10 + Threshold for integral neglect (rithr1): 0.29E-10 + + Contributions to RI integral batches: + neglected integral batches: 1044 + direct contribution: 0 + memory contribution: 132 + Core memory available (ricore) 40 MiB + Core memory needed for (P|Q) and Cholesky 1 MiB + Core memory used for integrals 2 MiB + + **************************************** + Memory allocated for RIDFT 2 MiB + **************************************** + + MOs are in ASCII format ! + + + reading orbital data $uhfmo_alpha from file control + orbital characterization : scfconv=7 + + reading orbital data $uhfmo_beta from file control + orbital characterization : scfconv=7 + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 2081 + + Calculating ground state density on molecular grid + + Integral of ground state total density: Na = 77.99685818104456 + + Integral of ground state spin density: Nb = 1.999782063536158 + + + all orbitals will be included in the transformation + + number of non-frozen orbitals : 108 + number of non-frozen occupied orbitals : 40 + all orbitals will be included in the transformation + + number of non-frozen orbitals : 108 + number of non-frozen occupied orbitals : 38 + + dimension of super-tensorspace: 1 + + IRREP tensor space dimension number of roots + + a1' 473 1 + a2' 417 1 + e' 895 1 + a1" 418 1 + a2" 482 1 + e" 900 1 + + maximum number of Davidson iterations set to 35 + + + machine precision: 2.22D-16 + + + logfile unrs_a1' will be constructed + + logfile unrs_a2' will be constructed + + logfile unrs_e' will be constructed + + logfile unrs_a1" will be constructed + + logfile unrs_a2" will be constructed + + logfile unrs_e" will be constructed + + + Nonorthonormal Krylov Space Iteration + + + total number of roots to be determined: 6 + + + maximum core memory set to 50 MB, + corresponding to 247 vectors in CAO basis + + + maximum number of simultaneously treated vectors (including degeneracy): 16 + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 1 a1' 0 6.653544993557436D-03 + a2' 0 6.187712856098195D-03 + e' 0 8.162478316899516D-03 + a1" 0 1.113725974532640D-02 + a2" 0 1.312868992323971D-02 + e" 0 7.807096186205476D-03 + + 2 a1' 0 3.598505003138214D-03 + a2' 0 1.514668655498120D-03 + e' 0 4.719102888037123D-03 + a1" 0 3.942541609303284D-03 + a2" 0 8.386763245585922D-03 + e" 0 3.670980028675391D-03 + + 3 a1' 0 1.095852930325537D-03 + a2' 0 3.604105534641941D-04 + e' 0 1.900591630134017D-03 + a1" 0 1.636884000106233D-04 + a2" 0 4.315154173424182D-03 + e" 0 1.441282621939299D-03 + + 4 a1' 0 2.596367867987149D-04 + a2' 0 1.004178261695742D-04 + e' 0 4.246357733925653D-04 + a1" 0 1.106763198540536D-05 + a2" 0 1.659229147375020D-03 + e" 0 3.333729188056164D-04 + + 5 a1' 0 1.168883602725443D-04 + a2' 0 1.570961563090160D-05 + e' 0 1.276907577221173D-04 + a1" 1 9.860324075377021D-07 + a2" 0 8.426678864281076D-04 + e" 0 2.176992622041266D-04 + + 6 a1' 0 3.442713308660887D-05 + a2' 1 2.156116324469686D-06 + e' 0 4.985703275537566D-05 + a1" 1 9.860324075377021D-07 + a2" 0 4.947334125118694D-04 + e" 0 5.040058712526180D-05 + + 7 a1' 1 8.046175457216619D-06 + a2' 1 2.156116324469686D-06 + e' 0 1.464266178839974D-05 + a1" 1 9.860324075377021D-07 + a2" 0 1.686054648388413D-04 + e" 1 8.658079521620624D-06 + + 8 a1' 1 8.046175457216619D-06 + a2' 1 2.156116324469686D-06 + e' 1 7.501826682208339D-06 + a1" 1 9.860324075377021D-07 + a2" 0 2.202702980868813D-05 + e" 1 8.658079521620624D-06 + + 9 a1' 1 8.046175457216619D-06 + a2' 1 2.156116324469686D-06 + e' 1 7.501826682208339D-06 + a1" 1 9.860324075377021D-07 + a2" 1 7.466683917848791D-06 + e" 1 8.658079521620624D-06 + + + converged! + + + Switching to fine grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 7043 + + Calculating ground state density on molecular grid + + Integral of ground state total density: Na = 77.99995750386027 + + Integral of ground state spin density: Nb = 1.999995303782432 + + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 10 a1' 0 1.057457691015560D-05 + a2' 1 9.250272059524912D-06 + e' 0 1.007664289628898D-05 + a1" 0 1.594689546564248D-05 + a2" 0 3.336978877544380D-05 + e" 0 1.534076944026955D-05 + + + NOTE: Residual norms are larger than 1.00D-05 due to mgrid option! + + Eigenpairs written on logfile unrs_a1' + + Eigenpairs written on logfile unrs_a2' + + Eigenpairs written on logfile unrs_e' + + Eigenpairs written on logfile unrs_a1" + + Eigenpairs written on logfile unrs_a2" + + Eigenpairs written on logfile unrs_e" + + + + IRREP Vector Eigenvalue Euclidean residual norm + + a1' 1 4.173452717754516D-03 1.057457691015560D-05 + + a2' 1 3.948336985411706D-03 9.250272059524912D-06 + + e' 1 6.507476981358921D-04 1.007664289628898D-05 + + a1" 1 3.044075723953279D-03 1.594689546564248D-05 + + a2" 1 2.013001419853261D-03 3.336978877544380D-05 + + e" 1 2.390278415057089D-03 1.534076944026955D-05 + + + + + + + Selection rules for point group d3h + + + Subduction with respect to d3h : + + Polar vector representation: e', a2" + + Axial vector representation: a2', e" + + Symmetric second rank tensor representation: a1', e', e" + + + + + Ground state + + + Total energy: -1454.190160138000 + + Charge: + + elec nuc total + + -78.000000 78.000000 0.000000 + + + Electric dipole moment: + + elec nuc total + + x 0.000000 0.000000 0.000000 Norm: 0.000000 + y 0.000000 0.000000 0.000000 + z 0.000000 0.000000 0.000000 Norm / debye: 0.000000 + + + Electric quadrupole moment: + + elec nuc total + + xx -390.390699 331.085089 -59.305610 + yy -390.390699 331.085089 -59.305610 1/3*trace: -59.000862 + zz -537.572699 479.181332 -58.391368 + xy 0.000000 0.000000 0.000000 + xz 0.000000 0.000000 0.000000 Anisotropy: 0.914242 + yz 0.000000 0.000000 0.000000 + + + + ============================================================================== + + I R R E P a1' + + ============================================================================== + + + Excitation is electric dipole forbidden + + Excitation is magnetic dipole forbidden + + Excitation is electric quadrupole allowed + + + + + 1 a1' excitation + + + Total energy: -1454.125557872422 + + Excitation energy: 0.6460226557756714E-01 + + Excitation energy / eV: 1.757917842110733 + + Excitation energy / nm: 705.2903215180999 + + Excitation energy / cm^(-1): 14178.55838001987 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 7 e' alpha -4.84 8 e' alpha -3.02 99.4 + + = 0.9957473430 + = 0.0042526570 + = -0.0030417093 + + 1/2 = 0.4969582907 + 1/2 = 0.5030417093 + + = 1.0000000000 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx -0.944104 + yy -0.944104 1/3*trace: -0.574100 + zz 0.165909 + xy 0.000000 + xz 0.000000 Anisotropy: 1.110013 + yz 0.000000 + + + + ============================================================================== + + I R R E P a2' + + ============================================================================== + + + Excitation is electric dipole forbidden + + Excitation is magnetic dipole allowed + + Excitation is electric quadrupole forbidden + + + + + 1 a2' excitation + + + Total energy: -1454.127324344177 + + Excitation energy: 0.6283579382335920E-01 + + Excitation energy / eV: 1.709849679383866 + + Excitation energy / nm: 725.1178012978620 + + Excitation energy / cm^(-1): 13790.86264412310 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 7 e' alpha -4.84 8 e' alpha -3.02 98.9 + + = 0.9933832464 + = 0.0066167536 + = -0.0051575051 + + 1/2 = 0.4948424949 + 1/2 = 0.5051575051 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.001132 + y 0.000000 + z -0.001132 Norm / Bohr mag.: 0.310274 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.000000 + yz 0.000000 + + + + ============================================================================== + + I R R E P e' + + ============================================================================== + + + Excitation is electric dipole allowed + + Excitation is magnetic dipole forbidden + + Excitation is electric quadrupole allowed + + + + + 1 e' excitation + + + Total energy: -1454.164650381080 + + Excitation energy: 0.2550975692036073E-01 + + Excitation energy / eV: 0.6941561017603349 + + Excitation energy / nm: 1786.114732580356 + + Excitation energy / cm^(-1): 5598.744479342940 + + + Oscillator strength: + + velocity representation: 0.6659932145145367E-02 + + length representation: 0.3293161473237949E-03 + + mixed representation: 0.1480953475122419E-02 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 7 a1' beta -4.98 7 e' beta -4.26 99.1 + + = 0.0057879690 + = 0.9942120310 + = 0.0006878394 + + 1/2 = 0.5006878394 + 1/2 = 0.4993121606 + + = 1.0000000000 + + + + 1st column + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.442499 Norm: 0.442499 + y 0.000000 + z 0.000000 Norm / debye: 1.124729 + + + Electric transition dipole moment (length rep.): + + x 0.098397 Norm: 0.098397 + y 0.000000 + z 0.000000 Norm / debye: 0.250103 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 3.935711 + yy -3.935711 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 6.816851 + yz 0.000000 + + + 2nd column + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.442499 + y -0.442499 + z 0.000000 Norm / debye: 1.124729 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.098397 + y 0.098397 + z 0.000000 Norm / debye: 0.250103 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy -3.935711 + xz 0.000000 Anisotropy: 6.816851 + yz 0.000000 + + + + ============================================================================== + + I R R E P a1" + + ============================================================================== + + + Excitation is electric dipole forbidden + + Excitation is magnetic dipole forbidden + + Excitation is electric quadrupole forbidden + + + + + 1 a1" excitation + + + Total energy: -1454.134986994860 + + Excitation energy: 0.5517314314005755E-01 + + Excitation energy / eV: 1.501338255928224 + + Excitation energy / nm: 825.8248500422932 + + Excitation energy / cm^(-1): 12109.10521522237 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 6 e" beta -5.88 7 e' beta -4.26 99.2 + + = 0.0068302325 + = 0.9931697675 + = -0.0037645069 + + 1/2 = 0.4962354931 + 1/2 = 0.5037645069 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.000000 + yz 0.000000 + + + + ============================================================================== + + I R R E P a2" + + ============================================================================== + + + Excitation is electric dipole allowed + + Excitation is magnetic dipole forbidden + + Excitation is electric quadrupole forbidden + + + + + 1 a2" excitation + + + Total energy: -1454.145293653629 + + Excitation energy: 0.4486648437144659E-01 + + Excitation energy / eV: 1.220879680986547 + + Excitation energy / nm: 1015.532045764586 + + Excitation energy / cm^(-1): 9847.055088230563 + + + Oscillator strength: + + velocity representation: 0.1470985333415308E-03 + + length representation: 0.6041295478674657E-05 + + mixed representation: 0.2981049654728790E-04 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 7 a1' beta -4.98 6 a2" beta -3.28 56.1 + 7 a1' alpha -5.20 6 a2" alpha -3.43 31.6 + 6 e" beta -5.88 7 e' beta -4.26 5.6 + + = 0.3572596439 + = 0.6427403561 + = -0.4386844860 + + 1/2 = 0.0613155140 + 1/2 = 0.9386844860 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.070128 + y 0.000000 + z -0.070128 Norm / debye: 0.178248 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.014212 + y 0.000000 + z -0.014212 Norm / debye: 0.036123 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.000000 + yz 0.000000 + + + + ============================================================================== + + I R R E P e" + + ============================================================================== + + + Excitation is electric dipole forbidden + + Excitation is magnetic dipole allowed + + Excitation is electric quadrupole allowed + + + + + 1 e" excitation + + + Total energy: -1454.141269664336 + + Excitation energy: 0.4889047366366059E-01 + + Excitation energy / eV: 1.330378047800820 + + Excitation energy / nm: 931.9474581786762 + + Excitation energy / cm^(-1): 10730.21865207998 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 7 e' alpha -4.84 6 a2" alpha -3.43 94.7 + + = 0.9537136549 + = 0.0462863451 + = -0.0139252463 + + 1/2 = 0.4860747537 + 1/2 = 0.5139252463 + + = 1.0000000000 + + + + 1st column + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.001293 + y -0.001293 + z 0.000000 Norm / Bohr mag.: 0.354246 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz -0.051761 Anisotropy: 0.089653 + yz 0.000000 + + + 2nd column + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.001293 Norm: 0.001293 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.354246 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.089653 + yz -0.051761 + + SUMMARY OF EXCITATION ENERGIES AND DIPOLE OSCILLATOR STRENGTHS (velocity/length): + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a1' | 0.064602 | 1.75792 | 14178.558 | 705.290 | 0.00000 | 0.00000 | + ----------------------------------------------------------------------------------------------- + Transitions are electric dipole forbidden in irrep a1' + Transitions are magnetic dipole forbidden in irrep a1' + + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a2' | 0.062836 | 1.70985 | 13790.863 | 725.118 | 0.00000 | 0.00000 | + ----------------------------------------------------------------------------------------------- + Transitions are electric dipole forbidden in irrep a2' + + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 e' | 0.025510 | 0.69416 | 5598.744 | 1786.115 | 0.00666 | 0.00033 | + ----------------------------------------------------------------------------------------------- + Transitions are magnetic dipole forbidden in irrep e' + + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a1" | 0.055173 | 1.50134 | 12109.105 | 825.825 | 0.00000 | 0.00000 | + ----------------------------------------------------------------------------------------------- + Transitions are electric dipole forbidden in irrep a1" + Transitions are magnetic dipole forbidden in irrep a1" + + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a2" | 0.044866 | 1.22088 | 9847.055 | 1015.532 | 0.00015 | 0.00001 | + ----------------------------------------------------------------------------------------------- + Transitions are magnetic dipole forbidden in irrep a2" + + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 e" | 0.048890 | 1.33038 | 10730.219 | 931.947 | 0.00000 | 0.00000 | + ----------------------------------------------------------------------------------------------- + Transitions are electric dipole forbidden in irrep e" + + + + + ------------------------------------------------------------------------ + total cpu-time : 2.30 seconds + total wall-time : 8.40 seconds + ------------------------------------------------------------------------ + + **** escf : all done **** + + + 2023-01-25 00:19:24.066 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_escf_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_escf_output.json new file mode 100644 index 0000000..e07561a --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_escf_output.json @@ -0,0 +1,838 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "EscfOnlyOutput", + "@version": "1.3.0", + "escf": { + "@module": "turbomoleio.output.data", + "@class": "EscfData", + "@version": "1.3.0", + "calc_type": "RPA UHF-EXCITATION", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "EscfIterationData", + "@version": "1.3.0", + "steps": [ + [ + [ + "a1'", + 0, + 0.006653544993557436 + ], + [ + "a2'", + 0, + 0.006187712856098195 + ], + [ + "e'", + 0, + 0.008162478316899516 + ], + [ + "a1\"", + 0, + 0.0111372597453264 + ], + [ + "a2\"", + 0, + 0.01312868992323971 + ], + [ + "e\"", + 0, + 0.007807096186205476 + ] + ], + [ + [ + "a1'", + 0, + 0.003598505003138214 + ], + [ + "a2'", + 0, + 0.00151466865549812 + ], + [ + "e'", + 0, + 0.004719102888037123 + ], + [ + "a1\"", + 0, + 0.003942541609303284 + ], + [ + "a2\"", + 0, + 0.008386763245585922 + ], + [ + "e\"", + 0, + 0.003670980028675391 + ] + ], + [ + [ + "a1'", + 0, + 0.001095852930325537 + ], + [ + "a2'", + 0, + 0.0003604105534641941 + ], + [ + "e'", + 0, + 0.001900591630134017 + ], + [ + "a1\"", + 0, + 0.0001636884000106233 + ], + [ + "a2\"", + 0, + 0.004315154173424182 + ], + [ + "e\"", + 0, + 0.001441282621939299 + ] + ], + [ + [ + "a1'", + 0, + 0.0002596367867987149 + ], + [ + "a2'", + 0, + 0.0001004178261695742 + ], + [ + "e'", + 0, + 0.0004246357733925653 + ], + [ + "a1\"", + 0, + 1.106763198540536e-05 + ], + [ + "a2\"", + 0, + 0.00165922914737502 + ], + [ + "e\"", + 0, + 0.0003333729188056164 + ] + ], + [ + [ + "a1'", + 0, + 0.0001168883602725443 + ], + [ + "a2'", + 0, + 1.57096156309016e-05 + ], + [ + "e'", + 0, + 0.0001276907577221173 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0008426678864281076 + ], + [ + "e\"", + 0, + 0.0002176992622041266 + ] + ], + [ + [ + "a1'", + 0, + 3.442713308660887e-05 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 0, + 4.985703275537566e-05 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0004947334125118694 + ], + [ + "e\"", + 0, + 5.04005871252618e-05 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 0, + 1.464266178839974e-05 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0001686054648388413 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 1, + 7.501826682208339e-06 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 2.202702980868813e-05 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 1, + 7.501826682208339e-06 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 1, + 7.466683917848791e-06 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ] + ], + "converged": true + }, + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 40, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 50.0, + "max_cao_basis_vectors": 247, + "max_treated_vectors": 16, + "irrep_data": { + "a1'": { + "tensor_space_dim": 473, + "n_roots": 1 + }, + "a2'": { + "tensor_space_dim": 417, + "n_roots": 1 + }, + "e'": { + "tensor_space_dim": 895, + "n_roots": 1 + }, + "a1\"": { + "tensor_space_dim": 418, + "n_roots": 1 + }, + "a2\"": { + "tensor_space_dim": 482, + "n_roots": 1 + }, + "e\"": { + "tensor_space_dim": 900, + "n_roots": 1 + } + }, + "gs_tot_en": -1454.190160138, + "excitations": { + "a1'": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.125557872422, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 8, + "irrep": "e'", + "energy": -3.02, + "spin": "alpha" + }, + "coeff": 99.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.7223000000000002, + "anisotropy": 1.110013, + "moment": [ + [ + -0.944104, + 0.0, + 0.0 + ], + [ + 0.0, + -0.944104, + 0.0 + ], + [ + 0.0, + 0.0, + 0.165909 + ] + ] + } + } + ] + } + ], + "a2'": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.127324344177, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 8, + "irrep": "e'", + "energy": -3.02, + "spin": "alpha" + }, + "coeff": 98.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.001132 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "e'": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.16465038108, + "osc_stre": 0.0003293161473237949, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -4.98, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 99.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.098397, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 6.816851, + "moment": [ + [ + 3.935711, + 0.0, + 0.0 + ], + [ + 0.0, + -3.935711, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + }, + { + "electric_dipole": [ + 0.0, + 0.098397, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 6.816851, + "moment": [ + [ + 0.0, + -3.935711, + 0.0 + ], + [ + -3.935711, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "a1\"": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.13498699486, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 6, + "irrep": "e\"", + "energy": -5.88, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "a2\"": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.145293653629, + "osc_stre": 6.041295478674657e-06, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -4.98, + "spin": "beta" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.28, + "spin": "beta" + }, + "coeff": 56.1 + }, + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -5.2, + "spin": "alpha" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.43, + "spin": "alpha" + }, + "coeff": 31.6 + }, + { + "occ_orb": { + "index": 6, + "irrep": "e\"", + "energy": -5.88, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 5.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.014212 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "e\"": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.141269664336, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.43, + "spin": "alpha" + }, + "coeff": 94.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.001293, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.089653, + "moment": [ + [ + 0.0, + 0.0, + -0.051761 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.051761, + 0.0, + 0.0 + ] + ] + } + }, + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.001293, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.089653, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.051761 + ], + [ + 0.0, + -0.051761, + 0.0 + ] + ] + } + } + ] + } + ] + } + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:15.731000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:24.066000" + }, + "cpu_time": 2.3, + "wall_time": 8.4 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "escf" + } +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_output.json new file mode 100644 index 0000000..952e158 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_output.json @@ -0,0 +1,1012 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "EscfOutput", + "@version": "1.3.0", + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": { + "@module": "turbomoleio.output.data", + "@class": "RiData", + "@version": "1.3.0", + "ricore": 40, + "marij": false, + "rij_memory": 2, + "rik": false + }, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "escf": { + "@module": "turbomoleio.output.data", + "@class": "EscfData", + "@version": "1.3.0", + "calc_type": "RPA UHF-EXCITATION", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "EscfIterationData", + "@version": "1.3.0", + "steps": [ + [ + [ + "a1'", + 0, + 0.006653544993557436 + ], + [ + "a2'", + 0, + 0.006187712856098195 + ], + [ + "e'", + 0, + 0.008162478316899516 + ], + [ + "a1\"", + 0, + 0.0111372597453264 + ], + [ + "a2\"", + 0, + 0.01312868992323971 + ], + [ + "e\"", + 0, + 0.007807096186205476 + ] + ], + [ + [ + "a1'", + 0, + 0.003598505003138214 + ], + [ + "a2'", + 0, + 0.00151466865549812 + ], + [ + "e'", + 0, + 0.004719102888037123 + ], + [ + "a1\"", + 0, + 0.003942541609303284 + ], + [ + "a2\"", + 0, + 0.008386763245585922 + ], + [ + "e\"", + 0, + 0.003670980028675391 + ] + ], + [ + [ + "a1'", + 0, + 0.001095852930325537 + ], + [ + "a2'", + 0, + 0.0003604105534641941 + ], + [ + "e'", + 0, + 0.001900591630134017 + ], + [ + "a1\"", + 0, + 0.0001636884000106233 + ], + [ + "a2\"", + 0, + 0.004315154173424182 + ], + [ + "e\"", + 0, + 0.001441282621939299 + ] + ], + [ + [ + "a1'", + 0, + 0.0002596367867987149 + ], + [ + "a2'", + 0, + 0.0001004178261695742 + ], + [ + "e'", + 0, + 0.0004246357733925653 + ], + [ + "a1\"", + 0, + 1.106763198540536e-05 + ], + [ + "a2\"", + 0, + 0.00165922914737502 + ], + [ + "e\"", + 0, + 0.0003333729188056164 + ] + ], + [ + [ + "a1'", + 0, + 0.0001168883602725443 + ], + [ + "a2'", + 0, + 1.57096156309016e-05 + ], + [ + "e'", + 0, + 0.0001276907577221173 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0008426678864281076 + ], + [ + "e\"", + 0, + 0.0002176992622041266 + ] + ], + [ + [ + "a1'", + 0, + 3.442713308660887e-05 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 0, + 4.985703275537566e-05 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0004947334125118694 + ], + [ + "e\"", + 0, + 5.04005871252618e-05 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 0, + 1.464266178839974e-05 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0001686054648388413 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 1, + 7.501826682208339e-06 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 2.202702980868813e-05 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 1, + 7.501826682208339e-06 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 1, + 7.466683917848791e-06 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ] + ], + "converged": true + }, + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 40, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 50.0, + "max_cao_basis_vectors": 247, + "max_treated_vectors": 16, + "irrep_data": { + "a1'": { + "tensor_space_dim": 473, + "n_roots": 1 + }, + "a2'": { + "tensor_space_dim": 417, + "n_roots": 1 + }, + "e'": { + "tensor_space_dim": 895, + "n_roots": 1 + }, + "a1\"": { + "tensor_space_dim": 418, + "n_roots": 1 + }, + "a2\"": { + "tensor_space_dim": 482, + "n_roots": 1 + }, + "e\"": { + "tensor_space_dim": 900, + "n_roots": 1 + } + }, + "gs_tot_en": -1454.190160138, + "excitations": { + "a1'": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.125557872422, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 8, + "irrep": "e'", + "energy": -3.02, + "spin": "alpha" + }, + "coeff": 99.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.7223000000000002, + "anisotropy": 1.110013, + "moment": [ + [ + -0.944104, + 0.0, + 0.0 + ], + [ + 0.0, + -0.944104, + 0.0 + ], + [ + 0.0, + 0.0, + 0.165909 + ] + ] + } + } + ] + } + ], + "a2'": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.127324344177, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 8, + "irrep": "e'", + "energy": -3.02, + "spin": "alpha" + }, + "coeff": 98.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.001132 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "e'": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.16465038108, + "osc_stre": 0.0003293161473237949, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -4.98, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 99.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.098397, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 6.816851, + "moment": [ + [ + 3.935711, + 0.0, + 0.0 + ], + [ + 0.0, + -3.935711, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + }, + { + "electric_dipole": [ + 0.0, + 0.098397, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 6.816851, + "moment": [ + [ + 0.0, + -3.935711, + 0.0 + ], + [ + -3.935711, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "a1\"": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.13498699486, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 6, + "irrep": "e\"", + "energy": -5.88, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "a2\"": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.145293653629, + "osc_stre": 6.041295478674657e-06, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -4.98, + "spin": "beta" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.28, + "spin": "beta" + }, + "coeff": 56.1 + }, + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -5.2, + "spin": "alpha" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.43, + "spin": "alpha" + }, + "coeff": 31.6 + }, + { + "occ_orb": { + "index": 6, + "irrep": "e\"", + "energy": -5.88, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 5.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.014212 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "e\"": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.141269664336, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.43, + "spin": "alpha" + }, + "coeff": 94.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.001293, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.089653, + "moment": [ + [ + 0.0, + 0.0, + -0.051761 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.051761, + 0.0, + 0.0 + ] + ] + } + }, + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.001293, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.089653, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.051761 + ], + [ + 0.0, + -0.051761, + 0.0 + ] + ] + } + } + ] + } + ] + } + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + 0.0, + 0.0, + 0.0 + ], + "center_of_charge": [ + 0.0, + 0.0, + 0.0 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "Al", + "species": [ + { + "element": "Al", + "occu": 1 + } + ], + "xyz": [ + 1.541837630348155, + 0.0, + 1.3116071517986991 + ], + "properties": {} + }, + { + "name": "Al", + "species": [ + { + "element": "Al", + "occu": 1 + } + ], + "xyz": [ + -0.7709188125281915, + 1.3352705543506724, + 1.3116071517986991 + ], + "properties": {} + }, + { + "name": "Al", + "species": [ + { + "element": "Al", + "occu": 1 + } + ], + "xyz": [ + -0.7709188125281915, + -1.3352705543506724, + 1.3116071517986991 + ], + "properties": {} + }, + { + "name": "Al", + "species": [ + { + "element": "Al", + "occu": 1 + } + ], + "xyz": [ + 1.541837630348155, + 0.0, + -1.3116071517986991 + ], + "properties": {} + }, + { + "name": "Al", + "species": [ + { + "element": "Al", + "occu": 1 + } + ], + "xyz": [ + -0.7709188125281915, + -1.3352705543506724, + -1.3116071517986991 + ], + "properties": {} + }, + { + "name": "Al", + "species": [ + { + "element": "Al", + "occu": 1 + } + ], + "xyz": [ + -0.7709188125281915, + 1.3352705543506724, + -1.3116071517986991 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "al": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 108, + "number_scf_aux_basis_func": 186 + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:15.731000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:24.066000" + }, + "cpu_time": 2.3, + "wall_time": 8.4 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "escf" + }, + "cosmo": null, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 2.9e-11, + "thize": 1e-05, + "thime": 5 + }, + "symmetry": { + "@module": "turbomoleio.output.data", + "@class": "SymmetryData", + "@version": "1.3.0", + "symbol": "d3h", + "n_reps": 6, + "reps": [ + "a1'", + "a2'", + "e'", + "a1\"", + "a2\"", + "e\"" + ] + } +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_parser.json new file mode 100644 index 0000000..8c4b4bf --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_parser.json @@ -0,0 +1,939 @@ +{ + "all_done": true, + "header": { + "executable": "escf", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:15.731000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + 0.0 + ], + "center_of_charge": [ + 0.0, + 0.0, + 0.0 + ] + }, + "coordinates": { + "coords": [ + [ + 2.91365085, + 0.0, + 2.4785783 + ], + [ + -1.45682542, + 2.52329565, + 2.4785783 + ], + [ + -1.45682542, + -2.52329565, + 2.4785783 + ], + [ + 2.91365085, + 0.0, + -2.4785783 + ], + [ + -1.45682542, + -2.52329565, + -2.4785783 + ], + [ + -1.45682542, + 2.52329565, + -2.4785783 + ] + ], + "species": [ + "al", + "al", + "al", + "al", + "al", + "al" + ], + "charges": [ + 13.0, + 13.0, + 13.0, + 13.0, + 13.0, + 13.0 + ], + "isotopes": [ + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "al": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 108, + "number_scf_aux_basis_func": 186 + }, + "symmetry": { + "symbol": "d3h", + "n_reps": 6, + "reps": [ + "a1'", + "a2'", + "e'", + "a1\"", + "a2\"", + "e\"" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": { + "marij": false, + "rij_memory": 2, + "rik": false, + "ricore": 40 + }, + "dftd": null, + "pre_scf_run": null, + "scf_iterations": null, + "scf_energies": null, + "cosmo_results": null, + "electrostatic_moments": null, + "timings": { + "cpu_time": 2.3, + "wall_time": 8.4, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:24.066000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 2.9e-11, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": { + "calc_type": "RPA UHF-EXCITATION", + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 40, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 50.0, + "max_cao_basis_vectors": 247, + "max_treated_vectors": 16, + "irrep_data": { + "a1'": { + "tensor_space_dim": 473, + "n_roots": 1 + }, + "a2'": { + "tensor_space_dim": 417, + "n_roots": 1 + }, + "e'": { + "tensor_space_dim": 895, + "n_roots": 1 + }, + "a1\"": { + "tensor_space_dim": 418, + "n_roots": 1 + }, + "a2\"": { + "tensor_space_dim": 482, + "n_roots": 1 + }, + "e\"": { + "tensor_space_dim": 900, + "n_roots": 1 + } + } + }, + "escf_iterations": { + "steps": [ + [ + [ + "a1'", + 0, + 0.006653544993557436 + ], + [ + "a2'", + 0, + 0.006187712856098195 + ], + [ + "e'", + 0, + 0.008162478316899516 + ], + [ + "a1\"", + 0, + 0.0111372597453264 + ], + [ + "a2\"", + 0, + 0.01312868992323971 + ], + [ + "e\"", + 0, + 0.007807096186205476 + ] + ], + [ + [ + "a1'", + 0, + 0.003598505003138214 + ], + [ + "a2'", + 0, + 0.00151466865549812 + ], + [ + "e'", + 0, + 0.004719102888037123 + ], + [ + "a1\"", + 0, + 0.003942541609303284 + ], + [ + "a2\"", + 0, + 0.008386763245585922 + ], + [ + "e\"", + 0, + 0.003670980028675391 + ] + ], + [ + [ + "a1'", + 0, + 0.001095852930325537 + ], + [ + "a2'", + 0, + 0.0003604105534641941 + ], + [ + "e'", + 0, + 0.001900591630134017 + ], + [ + "a1\"", + 0, + 0.0001636884000106233 + ], + [ + "a2\"", + 0, + 0.004315154173424182 + ], + [ + "e\"", + 0, + 0.001441282621939299 + ] + ], + [ + [ + "a1'", + 0, + 0.0002596367867987149 + ], + [ + "a2'", + 0, + 0.0001004178261695742 + ], + [ + "e'", + 0, + 0.0004246357733925653 + ], + [ + "a1\"", + 0, + 1.106763198540536e-05 + ], + [ + "a2\"", + 0, + 0.00165922914737502 + ], + [ + "e\"", + 0, + 0.0003333729188056164 + ] + ], + [ + [ + "a1'", + 0, + 0.0001168883602725443 + ], + [ + "a2'", + 0, + 1.57096156309016e-05 + ], + [ + "e'", + 0, + 0.0001276907577221173 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0008426678864281076 + ], + [ + "e\"", + 0, + 0.0002176992622041266 + ] + ], + [ + [ + "a1'", + 0, + 3.442713308660887e-05 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 0, + 4.985703275537566e-05 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0004947334125118694 + ], + [ + "e\"", + 0, + 5.04005871252618e-05 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 0, + 1.464266178839974e-05 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0001686054648388413 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 1, + 7.501826682208339e-06 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 2.202702980868813e-05 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 1, + 7.501826682208339e-06 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 1, + 7.466683917848791e-06 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ] + ], + "converged": true + }, + "escf_gs_total_en": -1454.190160138, + "escf_excitations": { + "a1'": [ + { + "tot_en": -1454.125557872422, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 8, + "irrep": "e'", + "energy": -3.02, + "spin": "alpha" + }, + "coeff": 99.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.7223000000000002, + "anisotropy": 1.110013, + "moment": [ + [ + -0.944104, + 0.0, + 0.0 + ], + [ + 0.0, + -0.944104, + 0.0 + ], + [ + 0.0, + 0.0, + 0.165909 + ] + ] + } + } + ] + } + ], + "a2'": [ + { + "tot_en": -1454.127324344177, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 8, + "irrep": "e'", + "energy": -3.02, + "spin": "alpha" + }, + "coeff": 98.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.001132 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "e'": [ + { + "tot_en": -1454.16465038108, + "osc_stre": 0.0003293161473237949, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -4.98, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 99.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.098397, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 6.816851, + "moment": [ + [ + 3.935711, + 0.0, + 0.0 + ], + [ + 0.0, + -3.935711, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + }, + { + "electric_dipole": [ + 0.0, + 0.098397, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 6.816851, + "moment": [ + [ + 0.0, + -3.935711, + 0.0 + ], + [ + -3.935711, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "a1\"": [ + { + "tot_en": -1454.13498699486, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 6, + "irrep": "e\"", + "energy": -5.88, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "a2\"": [ + { + "tot_en": -1454.145293653629, + "osc_stre": 6.041295478674657e-06, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -4.98, + "spin": "beta" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.28, + "spin": "beta" + }, + "coeff": 56.1 + }, + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -5.2, + "spin": "alpha" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.43, + "spin": "alpha" + }, + "coeff": 31.6 + }, + { + "occ_orb": { + "index": 6, + "irrep": "e\"", + "energy": -5.88, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 5.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.014212 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "e\"": [ + { + "tot_en": -1454.141269664336, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.43, + "spin": "alpha" + }, + "coeff": 94.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.001293, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.089653, + "moment": [ + [ + 0.0, + 0.0, + -0.051761 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.051761, + 0.0, + 0.0 + ] + ] + } + }, + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.001293, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.089653, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.051761 + ], + [ + 0.0, + -0.051761, + 0.0 + ] + ] + } + } + ] + } + ] + }, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/escf.log b/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/escf.log new file mode 100644 index 0000000..8ea426e --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/escf.log @@ -0,0 +1,3734 @@ + + escf (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:19:08.451 + + + + + e s c f + + TURBOMOLE GmbH + + + integral direct evaluation of + + * excitation energies and transition moments + * dynamic response properties + * stabilities + + + + references (see also programs dscf and ridft) + + implementation and benchmarks (review) + F. Furche and D. Rappoport, + "Density functional methods for excited states: + equilibrium structure and electronic spectra", + ch. III of "Computational Photochemistry", ed. by + M. Olivucci, vol. 16 of "Theoretical and Computational + Chemistry", Elsevier, Amsterdam, 2005. + + Bethe-Salpeter equation + K. Krause and W. Klopper, + J. Comput. Chem. 38 (2017) 383. + + 2c BSE, GW and hybrid TD-DFT + C. Holzer and W. Klopper + J. Chem. Phys. 150, 204116 (2019) + + nonorthonormal Krylov space methods + F. Furche, B. T. Krull, B. D. Nguyen, and J. Kwon, + J. Chem. Phys. 144 (2016), 174105. + + two-component GW quasi particle energies + M. Kuehn and F. Weigend, + J. Chem. Theory Comput. 11 (2015), 969. + + two-component TDDFT with spin-orbit coupling + M. Kuehn and F. Weigend, + J. Chem. Theory Comput. 9 (2013), 5341. + M. Kuehn and F. Weigend, + J. Chem. Phys. 142 (2015), 034116. + + GW quasi particle energies + M. J. van Setten, F. Weigend, and F. Evers, + J. Chem. Theory Comput. 9 (2013), 232. + + Fast GW methods: RIGW, contour deformation + J. Chem. Phys. 150, 204116 (2019) + + current-density dependent meta-GGA Linear Response + J. E. Bates and F. Furche, + J. Chem. Phys. 137 (2012), 164105. + + spin-flip method + M. Kuehn and F. Weigend, + Chem. Phys. Chem. 12 (2011), 3331. + + RI-J method + R. Bauernschmitt, M. Haeser, O. Treutler, and R. Ahlrichs, + Chem. Phys. Lett. 264 (1997), 573. + + density functional implementation + R. Bauernschmitt and R. Ahlrichs, + Chem. Phys. Lett. 256 (1996), 454. + R. Bauernschmitt and R. Ahlrichs, + J. Chem. Phys. 104 (1996), 9047. + + UHF extension (RPA and CIS) + C. Ochsenfeld, J. Gauss, and R. Ahlrichs, + J. Chem. Phys. 103 (1995), 7401. + + integral direct algorithm + H. Weiss, R. Ahlrichs, and M. Haeser, + J. Chem. Phys. 99 (1993), 1262. + + Seminumerical and pseudospectral algorithms + C. Holzer, J. Chem. Phys. 153 (2020), 184115. + + Two-component static/dynamic polarizabilities, + and relativistic damped-response approach, + polarizabilities and damped response at GW-BSE level + M. Kehry, Y. J. Franzke, C. Holzer, and W. Klopper, + Mol. Phys. 118 (2020), e1755064 + + Nuclear spin-spin coupling constants + F. Mack, C. J. Schattenberg, M. Kaupp, F. Weigend, + J. Phys. Chem. A 2020, 124, 41, 8529 + + + + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 -0.72557892 o 8.000 0 + 1.41713421 0.00000000 0.36278946 h 1.000 0 + -1.41713421 0.00000000 0.36278946 h 1.000 0 + + center of nuclear mass : 0.00000000 0.00000000 -0.60378908 + center of nuclear charge: 0.00000000 0.00000000 -0.50790525 + + ************************************************************************* + ridft_escf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 2 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 3 32 18 + --------------------------------------------------------------------------- + + total number of primitive shells : 16 + total number of contracted shells : 10 + total number of cartesian basis functions : 19 + total number of SCF-basis functions : 18 + + + residuum convergence criterium : 0.10E-04 + + + integral neglect threshold : 0.33E-10 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + FOUND RI-J FLAG ! + + + AUXILIARY BASIS SET information: + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 39 37 def-SV(P) [6s3p3d1f|8s3p3d1f] + h 2 10 5 def-SV(P) [2s1p|4s2p] + --------------------------------------------------------------------------- + total: 3 59 47 + --------------------------------------------------------------------------- + + total number of primitive shells : 21 + total number of contracted shells : 19 + total number of cartesian basis functions : 53 + total number of SCF-basis functions : 47 + + RPA TRIPLET-EXCITATION-CALCULATION + + FOUND DFT-FLAG ! + + THERE IS NO NEED FOR RI IN TRIPLET CALCULATIONS. + RI-FLAG IS SWITCHED OFF + + symmetry group of the molecule : c2v + + the group has the following generators : + c2(z) + mirror plane sigma(xz) + + 4 symmetry operations found + + there are 4 real representations : a1 a2 b1 b2 + + maximum number of shells which are related by symmetry : 2 + + IRREPs of excited states : a1 a2 b1 b2 + + mo occupation : + irrep mo's occupied + a1 9 3 + a2 1 0 + b1 5 1 + b2 3 1 + + number of basis functions : 18 + number of occupied orbitals : 5 + + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 2 + partition function : becke + partition sharpness : 3 + + + biggest AO integral is expected to be 4.776656448 + MOs are in ASCII format ! + + + reading orbital data $scfmo from file mos + orbital characterization : scfconv=7 + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 1098 + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 9.999336695654957 + + + all orbitals will be included in the transformation + + number of non-frozen orbitals : 18 + number of non-frozen occupied orbitals : 5 + + + + dimension of super-tensorspace: 1 + + IRREP tensor space dimension number of roots + + a1 24 10 + a2 9 9 + b1 19 10 + b2 13 10 + + maximum number of Davidson iterations set to 35 + + + machine precision: 2.22D-16 + + + logfile trip_a1 will be constructed + + logfile trip_a2 will be constructed + + logfile trip_b1 will be constructed + + logfile trip_b2 will be constructed + + + Nonorthonormal Krylov Space Iteration + + + total number of roots to be determined: 39 + + + maximum core memory set to 500 MB, + corresponding to 155298 vectors in CAO basis + + + maximum number of simultaneously treated vectors (including degeneracy): 58 + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 1 a1 0 1.246374408123256D-01 + a2 9 7.348166357137622D-15 + b1 0 9.181206046462143D-02 + b2 10 5.215985075398134D-14 + + 2 a1 10 7.745012815871526D-14 + a2 9 7.348166357137622D-15 + b1 10 4.175781234104372D-14 + b2 10 5.215985075398134D-14 + + + converged! + + + Switching to fine grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 3891 + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 9.999998376409369 + + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 3 a1 0 6.403940522260189D-04 + a2 9 1.706585544322206D-13 + b1 0 5.891873443448800D-04 + b2 0 6.789901303557023D-04 + + + NOTE: Residual norms are larger than 1.00D-05 due to mgrid option! + + Eigenpairs written on logfile trip_a1 + + Eigenpairs written on logfile trip_a2 + + Eigenpairs written on logfile trip_b1 + + Eigenpairs written on logfile trip_b2 + + + + IRREP Vector Eigenvalue Euclidean residual norm + + a1 1 1.054766232029952D-01 1.298582917670337D-04 + 2 3.026046994133771D-01 1.099738037869553D-04 + 3 7.902543512639740D-01 4.552205590134016D-04 + 4 8.603798351365488D-01 2.827655638789335D-04 + 5 9.460562442523243D-01 1.199758740899852D-04 + 6 1.009429971377638D+00 6.403940522260189D-04 + 7 1.224509922904209D+00 3.748359443143058D-04 + 8 1.929758968467143D+00 5.798912085939602D-04 + 9 2.058098921634086D+00 5.012881530584084D-04 + 10 2.252781671673850D+00 4.300667852283489D-04 + + a2 1 1.120765400423354D-01 4.192021994801469D-15 + 2 5.842058186572742D-01 2.753518185042836D-15 + 3 1.474312621880384D+00 2.122997960535288D-15 + 4 1.744482247493362D+00 2.945476630319524D-15 + 5 7.604343181306200D+00 2.891828390794714D-15 + 6 8.869543285291950D+00 4.312910958139946D-15 + 7 1.029641062360514D+01 4.097264453572921D-15 + 8 1.113149001816987D+01 6.915470571309905D-15 + 9 4.512593472863269D+02 1.706585544322206D-13 + + b1 1 1.605557952129637D-01 8.148283965698304D-05 + 2 2.371925240336418D-01 9.531491512322061D-05 + 3 6.674184946834937D-01 7.109858668619430D-05 + 4 9.949683721775129D-01 1.947036479943374D-04 + 5 1.113098911396365D+00 8.868319995998766D-05 + 6 1.646768743710409D+00 5.636386120457392D-04 + 7 1.802348963498977D+00 1.206856050510259D-04 + 8 2.023160131345041D+00 1.332156682568466D-04 + 9 2.407356923953469D+00 5.891873443448800D-04 + 10 3.593079626443410D+00 5.377704909202448D-04 + + b2 1 6.456329812620863D-02 1.032952383281104D-04 + 2 7.109580265112532D-01 1.761158944801701D-04 + 3 1.128474645000850D+00 1.115067194593344D-04 + 4 1.327964921954495D+00 8.370100975008556D-05 + 5 1.677386384514268D+00 4.471284194887268D-04 + 6 3.022530110793249D+00 3.789684154731296D-04 + 7 7.060126011037987D+00 6.351851316669963D-04 + 8 7.611274156690730D+00 5.635921107676546D-04 + 9 8.452939957810736D+00 9.203724889538071D-05 + 10 9.029770179198403D+00 6.789901303557023D-04 + + + + + + + Selection rules for point group c2v + + + Subduction with respect to c2v : + + Polar vector representation: a1, b1, b2 + + Axial vector representation: a2, b1, b2 + + Symmetric second rank tensor representation: a1, a2, b1, b2 + + + + + Ground state + + + Total energy: -76.34300618267000 + + Charge: + + elec nuc total + + -10.000000 10.000000 0.000000 + + + Electric dipole moment: + + elec nuc total + + x 0.000000 0.000000 0.000000 Norm: 0.833024 + y 0.000000 0.000000 0.000000 + z 5.912076 -5.079052 0.833024 Norm / debye: 2.117351 + + + Electric quadrupole moment: + + elec nuc total + + xx -7.255308 4.016539 -3.238769 + yy -5.263827 0.000000 -5.263827 1/3*trace: -4.613667 + zz -9.813357 4.474951 -5.338406 + xy 0.000000 0.000000 0.000000 + xz 0.000000 0.000000 0.000000 Anisotropy: 2.063359 + yz 0.000000 0.000000 0.000000 + + + + ============================================================================== + + I R R E P a1 + + ============================================================================== + + + Excitation is electric dipole allowed + + Excitation is magnetic dipole forbidden + + Excitation is electric quadrupole allowed + + + + + 1 triplet a1 excitation + + + Total energy: -76.01823453488805 + + Excitation energy: 0.3247716477819380 + + Excitation energy / eV: 8.837489972578018 + + Excitation energy / nm: 140.2935045937036 + + Excitation energy / cm^(-1): 71279.13745877132 + + + Oscillator strength: + + velocity representation: 0.2354848144383120 + + length representation: 0.1313093878710515 + + mixed representation: 0.1758447236536340 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 4 a1 0.92 99.6 + + + S^2 expectation value: 2.00664831 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 1.042889 + y 0.000000 + z -1.042889 Norm / debye: 2.650779 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.778761 + y 0.000000 + z -0.778761 Norm / debye: 1.979429 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx -1.162068 + yy -0.265591 1/3*trace: -0.438110 + zz 0.113330 + xy 0.000000 + xz 0.000000 Anisotropy: 1.134437 + yz 0.000000 + + + + + 2 triplet a1 excitation + + + Total energy: -75.79291100961957 + + Excitation energy: 0.5500951730504251 + + Excitation energy / eV: 14.96885768507983 + + Excitation energy / nm: 82.82812664459315 + + Excitation energy / cm^(-1): 120731.9349550946 + + + Oscillator strength: + + velocity representation: 0.1462784859243031 + + length representation: 0.1744964493047580 + + mixed representation: 0.1597656921978774 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 2 b1 3.09 98.8 + + + S^2 expectation value: 2.01035042 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.631563 + y 0.000000 + z -0.631563 Norm / debye: 1.605286 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.689795 + y 0.000000 + z -0.689795 Norm / debye: 1.753297 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx -2.392923 + yy -0.540236 1/3*trace: -1.084303 + zz -0.319752 + xy 0.000000 + xz 0.000000 Anisotropy: 1.972194 + yz 0.000000 + + + + + 3 triplet a1 excitation + + + Total energy: -75.45404366868868 + + Excitation energy: 0.8889625139813119 + + Excitation energy / eV: 24.18991114822464 + + Excitation energy / nm: 51.25452642084957 + + Excitation energy / cm^(-1): 195104.7194621920 + + + Oscillator strength: + + velocity representation: 0.5989946058452202E-01 + + length representation: 0.9084914009269274E-01 + + mixed representation: 0.7376865517358960E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 5 a1 17.22 59.2 + 2 a1 -24.72 4 a1 0.92 25.5 + 1 b1 -13.01 3 b1 14.80 12.4 + + + S^2 expectation value: 2.01061141 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.317918 + y 0.000000 + z -0.317918 Norm / debye: 0.808074 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.391529 + y 0.000000 + z -0.391529 Norm / debye: 0.995176 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx -0.974100 + yy -0.189188 1/3*trace: -0.400979 + zz -0.039649 + xy 0.000000 + xz 0.000000 Anisotropy: 0.869381 + yz 0.000000 + + + + + 4 triplet a1 excitation + + + Total energy: -75.41543956234747 + + Excitation energy: 0.9275666203225237 + + Excitation energy / eV: 25.24038277966417 + + Excitation energy / nm: 49.12138024561211 + + Excitation energy / cm^(-1): 203577.3414449330 + + + Oscillator strength: + + velocity representation: 0.1571219125564624E-02 + + length representation: 0.4405119560493983E-02 + + mixed representation: 0.2630856914362120E-02 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 2 a1 -24.72 4 a1 0.92 70.8 + 3 a1 -8.44 5 a1 17.22 24.8 + + + S^2 expectation value: 2.00138506 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.050407 + y 0.000000 + z 0.050407 Norm / debye: 0.128123 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.084402 + y 0.000000 + z 0.084402 Norm / debye: 0.214530 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx -0.760907 + yy -0.665696 1/3*trace: -0.774584 + zz -0.897149 + xy 0.000000 + xz 0.000000 Anisotropy: 0.201491 + yz 0.000000 + + + + + 5 triplet a1 excitation + + + Total energy: -75.37035195620906 + + Excitation energy: 0.9726542264609372 + + Excitation energy / eV: 26.46727949265346 + + Excitation energy / nm: 46.84434758052210 + + Excitation energy / cm^(-1): 213472.9271513084 + + + Oscillator strength: + + velocity representation: 0.1846161838205189 + + length representation: 0.2839929522540723 + + mixed representation: 0.2289753154317505 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 3 b1 14.80 84.1 + 3 a1 -8.44 5 a1 17.22 15.1 + + + S^2 expectation value: 2.00319734 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.533582 + y 0.000000 + z 0.533582 Norm / debye: 1.356241 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.661790 + y 0.000000 + z 0.661790 Norm / debye: 1.682115 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx -0.451837 + yy -0.432177 1/3*trace: -0.522345 + zz -0.683021 + xy 0.000000 + xz 0.000000 Anisotropy: 0.241615 + yz 0.000000 + + + + + 6 triplet a1 excitation + + + Total energy: -75.33830226042343 + + Excitation energy: 1.004703922246568 + + Excitation energy / eV: 27.33939646180423 + + Excitation energy / nm: 45.35002964666255 + + Excitation energy / cm^(-1): 220507.0222979070 + + + Oscillator strength: + + velocity representation: 0.4724632824940223E-02 + + length representation: 0.7296036371497148E-02 + + mixed representation: 0.5871208813586277E-02 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 2 b2 23.42 92.3 + + + S^2 expectation value: 2.00929994 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.083987 + y 0.000000 + z -0.083987 Norm / debye: 0.213475 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.104369 + y 0.000000 + z -0.104369 Norm / debye: 0.265281 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 0.512091 + yy 1.833394 1/3*trace: 1.104253 + zz 0.967275 + xy 0.000000 + xz 0.000000 Anisotropy: 1.162583 + yz 0.000000 + + + + + 7 triplet a1 excitation + + + Total energy: -75.23643041802295 + + Excitation energy: 1.106575764647053 + + Excitation energy / eV: 30.11147152393163 + + Excitation energy / nm: 41.17508634804833 + + Excitation energy / cm^(-1): 242865.3072874820 + + + Oscillator strength: + + velocity representation: 0.7926866681929272E-01 + + length representation: 0.5343328082331574E-01 + + mixed representation: 0.6508137164077843E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 6 a1 23.83 94.5 + + + S^2 expectation value: 2.00520807 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.327798 + y 0.000000 + z -0.327798 Norm / debye: 0.833185 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.269129 + y 0.000000 + z -0.269129 Norm / debye: 0.684064 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 0.279761 + yy 0.234514 1/3*trace: 0.797572 + zz 1.878441 + xy 0.000000 + xz 0.000000 Anisotropy: 1.621777 + yz 0.000000 + + + + + 8 triplet a1 excitation + + + Total energy: -74.95384853558053 + + Excitation energy: 1.389157647089467 + + Excitation energy / eV: 37.80091907753653 + + Excitation energy / nm: 32.79926706336272 + + Excitation energy / cm^(-1): 304884.8615790416 + + + Oscillator strength: + + velocity representation: 0.2793429214641355E-01 + + length representation: 0.4811610985141787E-01 + + mixed representation: 0.3666182578020950E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 7 a1 30.18 99.0 + + + S^2 expectation value: 2.00103881 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.173676 + y 0.000000 + z -0.173676 Norm / debye: 0.441443 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.227937 + y 0.000000 + z -0.227937 Norm / debye: 0.579363 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 0.539242 + yy 0.125974 1/3*trace: 0.270930 + zz 0.147573 + xy 0.000000 + xz 0.000000 Anisotropy: 0.402903 + yz 0.000000 + + + + + 9 triplet a1 excitation + + + Total energy: -74.90839859812498 + + Excitation energy: 1.434607584545016 + + Excitation energy / eV: 39.03767533154121 + + Excitation energy / nm: 31.76015040687963 + + Excitation energy / cm^(-1): 314859.9698174365 + + + Oscillator strength: + + velocity representation: 0.3118784722374361E-01 + + length representation: 0.4405808732321431E-01 + + mixed representation: 0.3706854321937622E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 4 b1 27.75 95.8 + + + S^2 expectation value: 2.00332547 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.180581 + y 0.000000 + z 0.180581 Norm / debye: 0.458994 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.214631 + y 0.000000 + z 0.214631 Norm / debye: 0.545541 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx -0.780046 + yy -0.182657 1/3*trace: -0.406900 + zz -0.257997 + xy 0.000000 + xz 0.000000 Anisotropy: 0.563509 + yz 0.000000 + + + + + 10 triplet a1 excitation + + + Total energy: -74.84207924518309 + + Excitation energy: 1.500926937486915 + + Excitation energy / eV: 40.84231751818128 + + Excitation energy / nm: 30.35680919704808 + + Excitation energy / cm^(-1): 329415.3853126227 + + + Oscillator strength: + + velocity representation: 0.9496846248271561E-02 + + length representation: 0.9423586862392063E-02 + + mixed representation: 0.9460145640494614E-02 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 2 a1 -24.72 5 a1 17.22 95.7 + + + S^2 expectation value: 2.00208720 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.097422 + y 0.000000 + z 0.097422 Norm / debye: 0.247623 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.097045 + y 0.000000 + z 0.097045 Norm / debye: 0.246666 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 0.713084 + yy -0.439145 1/3*trace: 0.100753 + zz 0.028320 + xy 0.000000 + xz 0.000000 Anisotropy: 1.003757 + yz 0.000000 + + + + ============================================================================== + + I R R E P a2 + + ============================================================================== + + + Excitation is electric dipole forbidden + + Excitation is magnetic dipole allowed + + Excitation is electric quadrupole allowed + + + + + 1 triplet a2 excitation + + + Total energy: -76.00822783802636 + + Excitation energy: 0.3347783446436394 + + Excitation energy / eV: 9.109786165234871 + + Excitation energy / nm: 136.1000596036183 + + Excitation energy / cm^(-1): 73475.35355702009 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 2 b1 3.09 99.9 + + + S^2 expectation value: 2.00277720 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.001046 + y 0.000000 + z 0.001046 Norm / Bohr mag.: 0.286713 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.282669 + xz 0.000000 Anisotropy: 0.489597 + yz 0.000000 + + + + + 2 triplet a2 excitation + + + Total energy: -75.57867260453982 + + Excitation energy: 0.7643335781301736 + + Excitation energy / eV: 20.79858380053380 + + Excitation energy / nm: 59.61186838273395 + + Excitation energy / cm^(-1): 167751.8297917295 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 3 b1 14.80 99.9 + + + S^2 expectation value: 2.00080015 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.001276 + y 0.000000 + z 0.001276 Norm / Bohr mag.: 0.349720 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy -0.467253 + xz 0.000000 Anisotropy: 0.809306 + yz 0.000000 + + + + + 3 triplet a2 excitation + + + Total energy: -75.12879342459158 + + Excitation energy: 1.214212758078412 + + Excitation energy / eV: 33.04042439474003 + + Excitation energy / nm: 37.52501557643623 + + Excitation energy / cm^(-1): 266488.8966704878 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 4 b1 27.75 92.9 + + + S^2 expectation value: 2.00217052 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000055 + y 0.000000 + z -0.000055 Norm / Bohr mag.: 0.015203 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy -0.599554 + xz 0.000000 Anisotropy: 1.038458 + yz 0.000000 + + + + + 4 triplet a2 excitation + + + Total energy: -75.02221768806029 + + Excitation energy: 1.320788494609701 + + Excitation energy / eV: 35.94049898360250 + + Excitation energy / nm: 34.49708476864357 + + Excitation energy / cm^(-1): 289879.5670872732 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 2 b2 23.42 92.9 + + + S^2 expectation value: 2.00056588 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000574 + y 0.000000 + z -0.000574 Norm / Bohr mag.: 0.157201 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy -0.431211 + xz 0.000000 Anisotropy: 0.746880 + yz 0.000000 + + + + + 5 triplet a2 excitation + + + Total energy: -73.58540882603756 + + Excitation energy: 2.757597356632437 + + Excitation energy / eV: 75.03807414867001 + + Excitation energy / nm: 16.52284462429342 + + Excitation energy / cm^(-1): 605222.6614662003 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 1 a2 67.90 97.7 + + + S^2 expectation value: 2.00076842 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000514 + y 0.000000 + z -0.000514 Norm / Bohr mag.: 0.140882 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.157209 + xz 0.000000 Anisotropy: 0.272294 + yz 0.000000 + + + + + 6 triplet a2 excitation + + + Total energy: -73.36482833618534 + + Excitation energy: 2.978177846484650 + + Excitation energy / eV: 81.04037724541126 + + Excitation energy / nm: 15.29907044127052 + + Excitation energy / cm^(-1): 653634.4830161399 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 3 b2 68.79 96.7 + + + S^2 expectation value: 2.00028703 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000644 + y 0.000000 + z -0.000644 Norm / Bohr mag.: 0.176609 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy -0.110574 + xz 0.000000 Anisotropy: 0.191521 + yz 0.000000 + + + + + 7 triplet a2 excitation + + + Total energy: -73.13420412838164 + + Excitation energy: 3.208802054288351 + + Excitation energy / eV: 87.31598393035017 + + Excitation energy / nm: 14.19948999319157 + + Excitation energy / cm^(-1): 704250.6458543373 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 5 b1 81.78 97.4 + + + S^2 expectation value: 2.00024438 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000115 + y 0.000000 + z -0.000115 Norm / Bohr mag.: 0.031523 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.238662 + xz 0.000000 Anisotropy: 0.413375 + yz 0.000000 + + + + + 8 triplet a2 excitation + + + Total energy: -73.00661741363095 + + Excitation energy: 3.336388769039044 + + Excitation energy / eV: 90.78779657146006 + + Excitation energy / nm: 13.65648784183004 + + Excitation energy / cm^(-1): 732252.6929564719 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 2 a1 -24.72 1 a2 67.90 99.0 + + + S^2 expectation value: 2.00070424 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000688 + y 0.000000 + z -0.000688 Norm / Bohr mag.: 0.188478 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy -0.458118 + xz 0.000000 Anisotropy: 0.793484 + yz 0.000000 + + + + + 9 triplet a2 excitation + + + Total energy: -55.10014038527046 + + Excitation energy: 21.24286579739953 + + Excitation energy / eV: 578.0480369991816 + + Excitation energy / nm: 2.144877866035273 + + Excitation energy / cm^(-1): 4662270.125893923 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 a1 -510.23 1 a2 67.90 100.0 + + + S^2 expectation value: 2.00000112 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000003 + y 0.000000 + z 0.000003 Norm / Bohr mag.: 0.000698 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.015409 + xz 0.000000 Anisotropy: 0.026689 + yz 0.000000 + + + + ============================================================================== + + I R R E P b1 + + ============================================================================== + + + Excitation is electric dipole allowed + + Excitation is magnetic dipole allowed + + Excitation is electric quadrupole allowed + + + + + 1 triplet b1 excitation + + + Total energy: -75.94231204094471 + + Excitation energy: 0.4006941417252862 + + Excitation energy / eV: 10.90344703348489 + + Excitation energy / nm: 113.7110526842641 + + Excitation energy / cm^(-1): 87942.19877881065 + + + Oscillator strength: + + velocity representation: 0.2112777933009466 + + length representation: 0.2262610442217877 + + mixed representation: 0.2186411080587253 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 2 b1 3.09 97.4 + + + S^2 expectation value: 2.00688187 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.889336 Norm: 0.889336 + y 0.000000 + z 0.000000 Norm / debye: 2.260485 + + + Electric transition dipole moment (length rep.): + + x -0.920331 Norm: 0.920331 + y 0.000000 + z 0.000000 Norm / debye: 2.339266 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.001742 + y 0.001742 + z 0.000000 Norm / Bohr mag.: 0.477381 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz -0.372315 Anisotropy: 0.644868 + yz 0.000000 + + + + + 2 triplet b1 excitation + + + Total energy: -75.85598203128360 + + Excitation energy: 0.4870241513863987 + + Excitation energy / eV: 13.25260712773335 + + Excitation energy / nm: 93.55460613256245 + + Excitation energy / cm^(-1): 106889.4457675107 + + + Oscillator strength: + + velocity representation: 0.2875797779413072 + + length representation: 0.2777796399824467 + + mixed representation: 0.2826372360160074 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 4 a1 0.92 97.3 + + + S^2 expectation value: 2.00529004 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.941130 Norm: 0.941130 + y 0.000000 + z 0.000000 Norm / debye: 2.392132 + + + Electric transition dipole moment (length rep.): + + x 0.924955 Norm: 0.924955 + y 0.000000 + z 0.000000 Norm / debye: 2.351019 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000309 + y -0.000309 + z 0.000000 Norm / Bohr mag.: 0.084795 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.319097 Anisotropy: 0.552693 + yz 0.000000 + + + + + 3 triplet b1 excitation + + + Total energy: -75.52604933271800 + + Excitation energy: 0.8169568499519995 + + Excitation energy / eV: 22.23053649783910 + + Excitation energy / nm: 55.77204311669225 + + Excitation energy / cm^(-1): 179301.3029410504 + + + Oscillator strength: + + velocity representation: 0.2648189714069807 + + length representation: 0.3581528903420834 + + mixed representation: 0.3079702583478276 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 3 b1 14.80 98.5 + + + S^2 expectation value: 2.00441322 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.697302 Norm: 0.697302 + y 0.000000 + z 0.000000 Norm / debye: 1.772377 + + + Electric transition dipole moment (length rep.): + + x 0.810924 Norm: 0.810924 + y 0.000000 + z 0.000000 Norm / debye: 2.061179 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.002865 + y -0.002865 + z 0.000000 Norm / Bohr mag.: 0.785335 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz -0.556726 Anisotropy: 0.964278 + yz 0.000000 + + + + + 4 triplet b1 excitation + + + Total energy: -75.34552516922788 + + Excitation energy: 0.9974810134421170 + + Excitation energy / eV: 27.14285102882654 + + Excitation energy / nm: 45.67841597582850 + + Excitation energy / cm^(-1): 218921.7770554704 + + + Oscillator strength: + + velocity representation: 0.6036340635105417E-01 + + length representation: 0.8414035200812718E-01 + + mixed representation: 0.7126709099428233E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 2 a1 -24.72 2 b1 3.09 92.0 + + + S^2 expectation value: 2.00345617 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.301287 Norm: 0.301287 + y 0.000000 + z 0.000000 Norm / debye: 0.765801 + + + Electric transition dipole moment (length rep.): + + x -0.355710 Norm: 0.355710 + y 0.000000 + z 0.000000 Norm / debye: 0.904130 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000818 + y 0.000818 + z 0.000000 Norm / Bohr mag.: 0.224113 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz -0.598330 Anisotropy: 1.036339 + yz 0.000000 + + + + + 5 triplet b1 excitation + + + Total energy: -75.28797115415371 + + Excitation energy: 1.055035028516288 + + Excitation energy / eV: 28.70897613418397 + + Excitation energy / nm: 43.18657810260236 + + Excitation energy / cm^(-1): 231553.4232591764 + + + Oscillator strength: + + velocity representation: 0.1284942502686530 + + length representation: 0.2214315864696532 + + mixed representation: 0.1686792390580907 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 5 a1 17.22 90.4 + + + S^2 expectation value: 2.00426079 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.427419 Norm: 0.427419 + y 0.000000 + z 0.000000 Norm / debye: 1.086399 + + + Electric transition dipole moment (length rep.): + + x -0.561089 Norm: 0.561089 + y 0.000000 + z 0.000000 Norm / debye: 1.426157 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000368 + y -0.000368 + z 0.000000 Norm / Bohr mag.: 0.100836 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz -0.215802 Anisotropy: 0.373781 + yz 0.000000 + + + + + 6 triplet b1 excitation + + + Total energy: -75.05974130599394 + + Excitation energy: 1.283264876676054 + + Excitation energy / eV: 34.91942895027831 + + Excitation energy / nm: 35.50580514446820 + + Excitation energy / cm^(-1): 281644.0848987581 + + + Oscillator strength: + + velocity representation: 0.1978792631886659 + + length representation: 0.1701379379535982 + + mixed representation: 0.1834850669746642 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 4 b1 27.75 78.9 + 1 b1 -13.01 6 a1 23.83 21.0 + + + S^2 expectation value: 2.00200847 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.480936 Norm: 0.480936 + y 0.000000 + z 0.000000 Norm / debye: 1.222428 + + + Electric transition dipole moment (length rep.): + + x 0.445952 Norm: 0.445952 + y 0.000000 + z 0.000000 Norm / debye: 1.133505 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.001610 + y -0.001610 + z 0.000000 Norm / Bohr mag.: 0.441305 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz -0.672210 Anisotropy: 1.164301 + yz 0.000000 + + + + + 7 triplet b1 excitation + + + Total energy: -75.00049027457096 + + Excitation energy: 1.342515908099035 + + Excitation energy / eV: 36.53173223981016 + + Excitation energy / nm: 33.93878045327331 + + Excitation energy / cm^(-1): 294648.1831389109 + + + Oscillator strength: + + velocity representation: 0.1015236080691838E-02 + + length representation: 0.5612486793166832E-02 + + mixed representation: 0.2387048197005959E-02 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 6 a1 23.83 78.8 + 3 a1 -8.44 4 b1 27.75 20.9 + + + S^2 expectation value: 2.00022480 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.033680 Norm: 0.033680 + y 0.000000 + z 0.000000 Norm / debye: 0.085606 + + + Electric transition dipole moment (length rep.): + + x -0.079189 Norm: 0.079189 + y 0.000000 + z 0.000000 Norm / debye: 0.201279 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000729 + y -0.000729 + z 0.000000 Norm / Bohr mag.: 0.199718 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.222030 Anisotropy: 0.384568 + yz 0.000000 + + + + + 8 triplet b1 excitation + + + Total energy: -74.92062784645103 + + Excitation energy: 1.422378336218968 + + Excitation energy / eV: 38.70490041047981 + + Excitation energy / nm: 32.03321612807926 + + Excitation energy / cm^(-1): 312175.9600573385 + + + Oscillator strength: + + velocity representation: 0.5774687727203557E-03 + + length representation: 0.1383020408469612E-02 + + mixed representation: 0.8936728136886297E-03 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 2 a1 -24.72 3 b1 14.80 98.8 + + + S^2 expectation value: 2.00125064 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.024678 Norm: 0.024678 + y 0.000000 + z 0.000000 Norm / debye: 0.062725 + + + Electric transition dipole moment (length rep.): + + x -0.038190 Norm: 0.038190 + y 0.000000 + z 0.000000 Norm / debye: 0.097071 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000984 + y 0.000984 + z 0.000000 Norm / Bohr mag.: 0.269581 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz -0.680881 Anisotropy: 1.179320 + yz 0.000000 + + + + + 9 triplet b1 excitation + + + Total energy: -74.79144022404836 + + Excitation energy: 1.551565958621634 + + Excitation energy / eV: 42.22027598393910 + + Excitation energy / nm: 29.36604300114780 + + Excitation energy / cm^(-1): 340529.3657751746 + + + Oscillator strength: + + velocity representation: 0.8459011752145730E-02 + + length representation: 0.3114612763589440E-01 + + mixed representation: 0.1623161913383448E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 7 a1 30.18 99.2 + + + S^2 expectation value: 2.00101712 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.090432 Norm: 0.090432 + y 0.000000 + z 0.000000 Norm / debye: 0.229856 + + + Electric transition dipole moment (length rep.): + + x -0.173525 Norm: 0.173525 + y 0.000000 + z 0.000000 Norm / debye: 0.441060 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000428 + y -0.000428 + z 0.000000 Norm / Bohr mag.: 0.117377 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz -0.298321 Anisotropy: 0.516707 + yz 0.000000 + + + + + 10 triplet b1 excitation + + + Total energy: -74.44746414239671 + + Excitation energy: 1.895542040273285 + + Excitation energy / eV: 51.58034541476646 + + Excitation energy / nm: 24.03711006769916 + + Excitation energy / cm^(-1): 416023.3892653038 + + + Oscillator strength: + + velocity representation: 0.9226550791944600E-01 + + length representation: 0.9313921044836769E-01 + + mixed representation: 0.9270132986767134E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 2 a1 -24.72 4 b1 27.75 99.2 + + + S^2 expectation value: 2.00096822 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.270208 Norm: 0.270208 + y 0.000000 + z 0.000000 Norm / debye: 0.686806 + + + Electric transition dipole moment (length rep.): + + x -0.271485 Norm: 0.271485 + y 0.000000 + z 0.000000 Norm / debye: 0.690050 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000977 + y 0.000977 + z 0.000000 Norm / Bohr mag.: 0.267685 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.378952 Anisotropy: 0.656364 + yz 0.000000 + + + + ============================================================================== + + I R R E P b2 + + ============================================================================== + + + Excitation is electric dipole allowed + + Excitation is magnetic dipole allowed + + Excitation is electric quadrupole allowed + + + + + 1 triplet b2 excitation + + + Total energy: -76.08891309318071 + + Excitation energy: 0.2540930894892827 + + Excitation energy / eV: 6.914227722152135 + + Excitation energy / nm: 179.3175593699954 + + Excitation energy / cm^(-1): 55766.98697908238 + + + Oscillator strength: + + velocity representation: 0.9695632035150084E-01 + + length representation: 0.1444211774765394E-01 + + mixed representation: 0.3741997588047901E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 4 a1 0.92 100.0 + + + S^2 expectation value: 2.00456917 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.756549 + y 0.756549 + z 0.000000 Norm / debye: 1.922971 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.291988 + y 0.291988 + z 0.000000 Norm / debye: 0.742164 + + + Magnetic transition dipole moment / i: + + x -0.000282 Norm: 0.000282 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.077394 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.170900 + yz -0.098669 + + + + + 2 triplet b2 excitation + + + Total energy: -75.49982291284590 + + Excitation energy: 0.8431832698240953 + + Excitation energy / eV: 22.94419399909946 + + Excitation energy / nm: 54.03730634919430 + + Excitation energy / cm^(-1): 185057.3367570618 + + + Oscillator strength: + + velocity representation: 0.1054128736572616 + + length representation: 0.1866850354372666 + + mixed representation: 0.1402818807054211 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 5 a1 17.22 99.8 + + + S^2 expectation value: 2.00170449 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.433043 + y 0.433043 + z 0.000000 Norm / debye: 1.100695 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.576288 + y 0.576288 + z 0.000000 Norm / debye: 1.464788 + + + Magnetic transition dipole moment / i: + + x 0.001725 Norm: 0.001725 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.472753 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.451549 + yz -0.260702 + + + + + 3 triplet b2 excitation + + + Total energy: -75.28070931032175 + + Excitation energy: 1.062296872348239 + + Excitation energy / eV: 28.90658104361985 + + Excitation energy / nm: 42.89135536969138 + + Excitation energy / cm^(-1): 233147.2137523948 + + + Oscillator strength: + + velocity representation: 0.1341054218274605E-01 + + length representation: 0.1184729127031465E-01 + + mixed representation: 0.1260470544407261E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 6 a1 23.83 84.2 + 3 a1 -8.44 2 b2 23.42 15.7 + + + S^2 expectation value: 2.00347830 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.137609 + y -0.137609 + z 0.000000 Norm / debye: 0.349769 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.129340 + y -0.129340 + z 0.000000 Norm / debye: 0.328751 + + + Magnetic transition dipole moment / i: + + x -0.000399 Norm: 0.000399 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.109318 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 1.470922 + yz 0.849237 + + + + + 4 triplet b2 excitation + + + Total energy: -75.19063257920865 + + Excitation energy: 1.152373603461349 + + Excitation energy / eV: 31.35769465963726 + + Excitation energy / nm: 39.53869866781290 + + Excitation energy / cm^(-1): 252916.7710481079 + + + Oscillator strength: + + velocity representation: 0.1345247583028893E-01 + + length representation: 0.1706350575088063E-04 + + mixed representation: 0.4791100068812150E-03 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 2 b2 23.42 84.2 + 1 b2 -6.40 6 a1 23.83 15.7 + + + S^2 expectation value: 2.00049476 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.132327 + y 0.132327 + z 0.000000 Norm / debye: 0.336345 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.004713 + y -0.004713 + z 0.000000 Norm / debye: 0.011979 + + + Magnetic transition dipole moment / i: + + x 0.000723 Norm: 0.000723 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.198106 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.508370 + yz -0.293507 + + + + + 5 triplet b2 excitation + + + Total energy: -75.04786665948561 + + Excitation energy: 1.295139523184382 + + Excitation energy / eV: 35.24255466079512 + + Excitation energy / nm: 35.18026578941286 + + Excitation energy / cm^(-1): 284250.2685558664 + + + Oscillator strength: + + velocity representation: 0.3186600307892787 + + length representation: 0.5275290117476400 + + mixed representation: 0.4100029403867011 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 7 a1 30.18 99.5 + + + S^2 expectation value: 2.00216015 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.607507 + y -0.607507 + z 0.000000 Norm / debye: 1.544140 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.781647 + y -0.781647 + z 0.000000 Norm / debye: 1.986763 + + + Magnetic transition dipole moment / i: + + x -0.002174 Norm: 0.002174 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.595913 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.520233 + yz 0.300356 + + + + + 6 triplet b2 excitation + + + Total energy: -74.60446365779657 + + Excitation energy: 1.738542524873421 + + Excitation energy / eV: 47.30816940272273 + + Excitation energy / nm: 26.20778727475611 + + Excitation energy / cm^(-1): 381565.9786028396 + + + Oscillator strength: + + velocity representation: 0.1046310835710460 + + length representation: 0.7023608050783973E-01 + + mixed representation: 0.8572559249908102E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 2 a1 -24.72 2 b2 23.42 99.4 + + + S^2 expectation value: 2.00114320 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.300458 + y 0.300458 + z 0.000000 Norm / debye: 0.763693 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.246169 + y 0.246169 + z 0.000000 Norm / debye: 0.625704 + + + Magnetic transition dipole moment / i: + + x 0.001221 Norm: 0.001221 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.334727 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.063929 + yz -0.036909 + + + + + 7 triplet b2 excitation + + + Total energy: -73.68591641921864 + + Excitation energy: 2.657089763451357 + + Excitation energy / eV: 72.30312221252646 + + Excitation energy / nm: 17.14784095243236 + + Excitation energy / cm^(-1): 583163.7945702369 + + + Oscillator strength: + + velocity representation: 0.2859321587655434E-01 + + length representation: 0.6977753602944474E-01 + + mixed representation: 0.4466726039308838E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 8 a1 67.45 91.8 + + + S^2 expectation value: 2.00091171 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.127050 + y 0.127050 + z 0.000000 Norm / debye: 0.322931 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.198472 + y 0.198472 + z 0.000000 Norm / debye: 0.504471 + + + Magnetic transition dipole moment / i: + + x 0.000860 Norm: 0.000860 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.235747 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.129434 + yz -0.074729 + + + + + 8 triplet b2 excitation + + + Total energy: -73.58415240678939 + + Excitation energy: 2.758853775880616 + + Excitation energy / eV: 75.07226307058782 + + Excitation energy / nm: 16.51531989782835 + + Excitation energy / cm^(-1): 605498.4136166987 + + + Oscillator strength: + + velocity representation: 0.4463135276964550 + + length representation: 1.098716013399029 + + mixed representation: 0.7002655352626644 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 3 b2 68.79 91.4 + + + S^2 expectation value: 2.00107413 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.492608 + y 0.492608 + z 0.000000 Norm / debye: 1.252094 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.772901 + y 0.772901 + z 0.000000 Norm / debye: 1.964534 + + + Magnetic transition dipole moment / i: + + x 0.003078 Norm: 0.003078 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.843583 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 1.272895 + yz -0.734906 + + + + + 9 triplet b2 excitation + + + Total energy: -73.43561216778127 + + Excitation energy: 2.907394014888717 + + Excitation energy / eV: 79.11425036142377 + + Excitation energy / nm: 15.67154380406330 + + Excitation energy / cm^(-1): 638099.2277170916 + + + Oscillator strength: + + velocity representation: 0.1200979302622326 + + length representation: 0.3280400058904574 + + mixed representation: 0.1984865883395009 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 1 a2 67.90 95.3 + + + S^2 expectation value: 2.00068207 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.248921 + y 0.248921 + z 0.000000 Norm / debye: 0.632699 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.411393 + y 0.411393 + z 0.000000 Norm / debye: 1.045665 + + + Magnetic transition dipole moment / i: + + x 0.001170 Norm: 0.001170 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.320652 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.340846 + yz -0.196787 + + + + + 10 triplet b2 excitation + + + Total energy: -73.33804858243694 + + Excitation energy: 3.004957600233055 + + Excitation energy / eV: 81.76909173399416 + + Excitation energy / nm: 15.16272730652381 + + Excitation energy / cm^(-1): 659511.9595803081 + + + Oscillator strength: + + velocity representation: 0.2563394030976651 + + length representation: 0.4465036699568586 + + mixed representation: 0.3383141797762221 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 9 a1 77.83 97.4 + + + S^2 expectation value: 2.00125766 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.357713 + y 0.357713 + z 0.000000 Norm / debye: 0.909221 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.472105 + y 0.472105 + z 0.000000 Norm / debye: 1.199981 + + + Magnetic transition dipole moment / i: + + x 0.002567 Norm: 0.002567 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.703551 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.789818 + yz -0.456002 + + SUMMARY OF EXCITATION ENERGIES AND DIPOLE OSCILLATOR STRENGTHS (velocity/length): + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a1 | 0.324772 | 8.83749 | 71279.137 | 140.294 | 0.23548 | 0.13131 | + | 2 a1 | 0.550095 | 14.96885 | 120731.935 | 82.828 | 0.14628 | 0.17450 | + | 3 a1 | 0.888963 | 24.18990 | 195104.719 | 51.255 | 0.05990 | 0.09085 | + | 4 a1 | 0.927567 | 25.24037 | 203577.341 | 49.121 | 0.00157 | 0.00441 | + | 5 a1 | 0.972654 | 26.46727 | 213472.927 | 46.844 | 0.18462 | 0.28399 | + | 6 a1 | 1.004704 | 27.33939 | 220507.022 | 45.350 | 0.00472 | 0.00730 | + | 7 a1 | 1.106576 | 30.11146 | 242865.307 | 41.175 | 0.07927 | 0.05343 | + | 8 a1 | 1.389158 | 37.80090 | 304884.862 | 32.799 | 0.02793 | 0.04812 | + | 9 a1 | 1.434608 | 39.03766 | 314859.970 | 31.760 | 0.03119 | 0.04406 | + | 10 a1 | 1.500927 | 40.84230 | 329415.385 | 30.357 | 0.00950 | 0.00942 | + ----------------------------------------------------------------------------------------------- + Transitions are magnetic dipole forbidden in irrep a1 + + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a2 | 0.334778 | 9.10978 | 73475.354 | 136.100 | 0.00000 | 0.00000 | + | 2 a2 | 0.764334 | 20.79858 | 167751.830 | 59.612 | 0.00000 | 0.00000 | + | 3 a2 | 1.214213 | 33.04041 | 266488.897 | 37.525 | 0.00000 | 0.00000 | + | 4 a2 | 1.320788 | 35.94049 | 289879.567 | 34.497 | 0.00000 | 0.00000 | + | 5 a2 | 2.757597 | 75.03805 | 605222.661 | 16.523 | 0.00000 | 0.00000 | + | 6 a2 | 2.978178 | 81.04035 | 653634.483 | 15.299 | 0.00000 | 0.00000 | + | 7 a2 | 3.208802 | 87.31595 | 704250.646 | 14.199 | 0.00000 | 0.00000 | + | 8 a2 | 3.336389 | 90.78776 | 732252.693 | 13.656 | 0.00000 | 0.00000 | + | 9 a2 | 21.242866 | 578.04782 | 4662270.125 | 2.145 | 0.00000 | 0.00000 | + ----------------------------------------------------------------------------------------------- + Transitions are electric dipole forbidden in irrep a2 + + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 b1 | 0.400694 | 10.90344 | 87942.199 | 113.711 | 0.21128 | 0.22626 | + | 2 b1 | 0.487024 | 13.25260 | 106889.446 | 93.555 | 0.28758 | 0.27778 | + | 3 b1 | 0.816957 | 22.23053 | 179301.303 | 55.772 | 0.26482 | 0.35815 | + | 4 b1 | 0.997481 | 27.14284 | 218921.777 | 45.678 | 0.06036 | 0.08414 | + | 5 b1 | 1.055035 | 28.70897 | 231553.423 | 43.187 | 0.12849 | 0.22143 | + | 6 b1 | 1.283265 | 34.91942 | 281644.085 | 35.506 | 0.19788 | 0.17014 | + | 7 b1 | 1.342516 | 36.53172 | 294648.183 | 33.939 | 0.00102 | 0.00561 | + | 8 b1 | 1.422378 | 38.70489 | 312175.960 | 32.033 | 0.00058 | 0.00138 | + | 9 b1 | 1.551566 | 42.22026 | 340529.366 | 29.366 | 0.00846 | 0.03115 | + | 10 b1 | 1.895542 | 51.58033 | 416023.389 | 24.037 | 0.09227 | 0.09314 | + ----------------------------------------------------------------------------------------------- + + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 b2 | 0.254093 | 6.91423 | 55766.987 | 179.318 | 0.09696 | 0.01444 | + | 2 b2 | 0.843183 | 22.94419 | 185057.337 | 54.037 | 0.10541 | 0.18669 | + | 3 b2 | 1.062297 | 28.90657 | 233147.214 | 42.891 | 0.01341 | 0.01185 | + | 4 b2 | 1.152374 | 31.35768 | 252916.771 | 39.539 | 0.01345 | 0.00002 | + | 5 b2 | 1.295140 | 35.24254 | 284250.269 | 35.180 | 0.31866 | 0.52753 | + | 6 b2 | 1.738543 | 47.30815 | 381565.979 | 26.208 | 0.10463 | 0.07024 | + | 7 b2 | 2.657090 | 72.30310 | 583163.794 | 17.148 | 0.02859 | 0.06978 | + | 8 b2 | 2.758854 | 75.07224 | 605498.414 | 16.515 | 0.44631 | 1.09872 | + | 9 b2 | 2.907394 | 79.11422 | 638099.228 | 15.672 | 0.12010 | 0.32804 | + | 10 b2 | 3.004958 | 81.76906 | 659511.959 | 15.163 | 0.25634 | 0.44650 | + ----------------------------------------------------------------------------------------------- + + + + + ------------------------------------------------------------------------ + total cpu-time : 0.21 seconds + total wall-time : 2.38 seconds + ------------------------------------------------------------------------ + + **** escf : all done **** + + + 2023-01-25 00:19:10.768 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_escf_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_escf_output.json new file mode 100644 index 0000000..17a0de5 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_escf_output.json @@ -0,0 +1,2586 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "EscfOnlyOutput", + "@version": "1.3.0", + "escf": { + "@module": "turbomoleio.output.data", + "@class": "EscfData", + "@version": "1.3.0", + "calc_type": "RPA TRIPLET-EXCITATION", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "EscfIterationData", + "@version": "1.3.0", + "steps": [ + [ + [ + "a1", + 0, + 0.1246374408123256 + ], + [ + "a2", + 9, + 7.348166357137622e-15 + ], + [ + "b1", + 0, + 0.09181206046462143 + ], + [ + "b2", + 10, + 5.215985075398134e-14 + ] + ], + [ + [ + "a1", + 10, + 7.745012815871526e-14 + ], + [ + "a2", + 9, + 7.348166357137622e-15 + ], + [ + "b1", + 10, + 4.175781234104372e-14 + ], + [ + "b2", + 10, + 5.215985075398134e-14 + ] + ] + ], + "converged": true + }, + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 5, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 155298, + "max_treated_vectors": 58, + "irrep_data": { + "a1": { + "tensor_space_dim": 24, + "n_roots": 10 + }, + "a2": { + "tensor_space_dim": 9, + "n_roots": 9 + }, + "b1": { + "tensor_space_dim": 19, + "n_roots": 10 + }, + "b2": { + "tensor_space_dim": 13, + "n_roots": 10 + } + }, + "gs_tot_en": -76.34300618267, + "excitations": { + "a1": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -76.01823453488805, + "osc_stre": 0.1313093878710515, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 99.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.778761 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.31433, + "anisotropy": 1.134437, + "moment": [ + [ + -1.162068, + 0.0, + 0.0 + ], + [ + 0.0, + -0.265591, + 0.0 + ], + [ + 0.0, + 0.0, + 0.11333 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.79291100961957, + "osc_stre": 0.174496449304758, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 98.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.689795 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -3.252909, + "anisotropy": 1.972194, + "moment": [ + [ + -2.392923, + 0.0, + 0.0 + ], + [ + 0.0, + -0.540236, + 0.0 + ], + [ + 0.0, + 0.0, + -0.319752 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.45404366868868, + "osc_stre": 0.09084914009269274, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 59.2 + }, + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 25.5 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 12.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.391529 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.202937, + "anisotropy": 0.869381, + "moment": [ + [ + -0.9741, + 0.0, + 0.0 + ], + [ + 0.0, + -0.189188, + 0.0 + ], + [ + 0.0, + 0.0, + -0.039649 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.41543956234747, + "osc_stre": 0.004405119560493983, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 70.8 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 24.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.084402 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -2.3237520000000003, + "anisotropy": 0.201491, + "moment": [ + [ + -0.760907, + 0.0, + 0.0 + ], + [ + 0.0, + -0.665696, + 0.0 + ], + [ + 0.0, + 0.0, + -0.897149 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.37035195620906, + "osc_stre": 0.2839929522540723, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 84.1 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 15.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.66179 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.5670349999999997, + "anisotropy": 0.241615, + "moment": [ + [ + -0.451837, + 0.0, + 0.0 + ], + [ + 0.0, + -0.432177, + 0.0 + ], + [ + 0.0, + 0.0, + -0.683021 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.33830226042343, + "osc_stre": 0.007296036371497148, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 92.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.104369 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 3.312759, + "anisotropy": 1.162583, + "moment": [ + [ + 0.512091, + 0.0, + 0.0 + ], + [ + 0.0, + 1.833394, + 0.0 + ], + [ + 0.0, + 0.0, + 0.967275 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.23643041802295, + "osc_stre": 0.05343328082331574, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 94.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.269129 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 2.392716, + "anisotropy": 1.621777, + "moment": [ + [ + 0.279761, + 0.0, + 0.0 + ], + [ + 0.0, + 0.234514, + 0.0 + ], + [ + 0.0, + 0.0, + 1.878441 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.95384853558053, + "osc_stre": 0.04811610985141787, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.227937 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.81279, + "anisotropy": 0.402903, + "moment": [ + [ + 0.539242, + 0.0, + 0.0 + ], + [ + 0.0, + 0.125974, + 0.0 + ], + [ + 0.0, + 0.0, + 0.147573 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.90839859812498, + "osc_stre": 0.04405808732321431, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 95.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.214631 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.2207, + "anisotropy": 0.563509, + "moment": [ + [ + -0.780046, + 0.0, + 0.0 + ], + [ + 0.0, + -0.182657, + 0.0 + ], + [ + 0.0, + 0.0, + -0.257997 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.84207924518309, + "osc_stre": 0.009423586862392063, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 95.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.097045 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.302259, + "anisotropy": 1.003757, + "moment": [ + [ + 0.713084, + 0.0, + 0.0 + ], + [ + 0.0, + -0.439145, + 0.0 + ], + [ + 0.0, + 0.0, + 0.02832 + ] + ] + } + } + ] + } + ], + "a2": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -76.00822783802636, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 99.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.001046 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.489597, + "moment": [ + [ + 0.0, + 0.282669, + 0.0 + ], + [ + 0.282669, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.57867260453982, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 99.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.001276 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.809306, + "moment": [ + [ + 0.0, + -0.467253, + 0.0 + ], + [ + -0.467253, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.12879342459158, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 92.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -5.5e-05 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.038458, + "moment": [ + [ + 0.0, + -0.599554, + 0.0 + ], + [ + -0.599554, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.0222176880603, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 92.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000574 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.74688, + "moment": [ + [ + 0.0, + -0.431211, + 0.0 + ], + [ + -0.431211, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.58540882603756, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 97.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000514 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.272294, + "moment": [ + [ + 0.0, + 0.157209, + 0.0 + ], + [ + 0.157209, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.36482833618534, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b2", + "energy": 68.79, + "spin": null + }, + "coeff": 96.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000644 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.191521, + "moment": [ + [ + 0.0, + -0.110574, + 0.0 + ], + [ + -0.110574, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.13420412838164, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "b1", + "energy": 81.78, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000115 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.413375, + "moment": [ + [ + 0.0, + 0.238662, + 0.0 + ], + [ + 0.238662, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.00661741363095, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 99.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000688 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.793484, + "moment": [ + [ + 0.0, + -0.458118, + 0.0 + ], + [ + -0.458118, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -55.10014038527046, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "a1", + "energy": -510.23, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 100.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 3e-06 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.026689, + "moment": [ + [ + 0.0, + 0.015409, + 0.0 + ], + [ + 0.015409, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "b1": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.94231204094471, + "osc_stre": 0.2262610442217877, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.920331, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.001742, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.644868, + "moment": [ + [ + 0.0, + 0.0, + -0.372315 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.372315, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.8559820312836, + "osc_stre": 0.2777796399824467, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 97.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.924955, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000309, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.552693, + "moment": [ + [ + 0.0, + 0.0, + 0.319097 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.319097, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.526049332718, + "osc_stre": 0.3581528903420834, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 98.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.810924, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.002865, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.964278, + "moment": [ + [ + 0.0, + 0.0, + -0.556726 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.556726, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.34552516922788, + "osc_stre": 0.08414035200812718, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 92.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.35571, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000818, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.036339, + "moment": [ + [ + 0.0, + 0.0, + -0.59833 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.59833, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.28797115415371, + "osc_stre": 0.2214315864696532, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 90.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.561089, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000368, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.373781, + "moment": [ + [ + 0.0, + 0.0, + -0.215802 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.215802, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.05974130599394, + "osc_stre": 0.1701379379535982, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 78.9 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 21.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.445952, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.00161, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.164301, + "moment": [ + [ + 0.0, + 0.0, + -0.67221 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.67221, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.00049027457096, + "osc_stre": 0.005612486793166832, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 78.8 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 20.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.079189, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000729, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.384568, + "moment": [ + [ + 0.0, + 0.0, + 0.22203 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.22203, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.92062784645103, + "osc_stre": 0.001383020408469612, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 98.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.03819, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000984, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.17932, + "moment": [ + [ + 0.0, + 0.0, + -0.680881 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.680881, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.79144022404836, + "osc_stre": 0.0311461276358944, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.173525, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000428, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.516707, + "moment": [ + [ + 0.0, + 0.0, + -0.298321 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.298321, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.44746414239671, + "osc_stre": 0.09313921044836769, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.271485, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000977, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.656364, + "moment": [ + [ + 0.0, + 0.0, + 0.378952 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.378952, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "b2": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -76.08891309318071, + "osc_stre": 0.01444211774765394, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 100.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.291988, + 0.0 + ], + "magnetic_dipole": [ + -0.000282, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.1709, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.098669 + ], + [ + 0.0, + -0.098669, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.4998229128459, + "osc_stre": 0.1866850354372666, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 99.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.576288, + 0.0 + ], + "magnetic_dipole": [ + 0.001725, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.451549, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.260702 + ], + [ + 0.0, + -0.260702, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.28070931032175, + "osc_stre": 0.01184729127031465, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 84.2 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 15.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.12934, + 0.0 + ], + "magnetic_dipole": [ + -0.000399, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.470922, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.849237 + ], + [ + 0.0, + 0.849237, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.19063257920865, + "osc_stre": 1.706350575088063e-05, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 84.2 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 15.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.004713, + 0.0 + ], + "magnetic_dipole": [ + 0.000723, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.50837, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.293507 + ], + [ + 0.0, + -0.293507, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.0478666594856, + "osc_stre": 0.52752901174764, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.781647, + 0.0 + ], + "magnetic_dipole": [ + -0.002174, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.520233, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.300356 + ], + [ + 0.0, + 0.300356, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.60446365779657, + "osc_stre": 0.07023608050783973, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 99.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.246169, + 0.0 + ], + "magnetic_dipole": [ + 0.001221, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.063929, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.036909 + ], + [ + 0.0, + -0.036909, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.68591641921864, + "osc_stre": 0.06977753602944474, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 8, + "irrep": "a1", + "energy": 67.45, + "spin": null + }, + "coeff": 91.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.198472, + 0.0 + ], + "magnetic_dipole": [ + 0.00086, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.129434, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.074729 + ], + [ + 0.0, + -0.074729, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.58415240678939, + "osc_stre": 1.098716013399029, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b2", + "energy": 68.79, + "spin": null + }, + "coeff": 91.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.772901, + 0.0 + ], + "magnetic_dipole": [ + 0.003078, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.272895, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.734906 + ], + [ + 0.0, + -0.734906, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.43561216778127, + "osc_stre": 0.3280400058904574, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 95.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.411393, + 0.0 + ], + "magnetic_dipole": [ + 0.00117, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.340846, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.196787 + ], + [ + 0.0, + -0.196787, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.33804858243694, + "osc_stre": 0.4465036699568586, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 9, + "irrep": "a1", + "energy": 77.83, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.472105, + 0.0 + ], + "magnetic_dipole": [ + 0.002567, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.789818, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.456002 + ], + [ + 0.0, + -0.456002, + 0.0 + ] + ] + } + } + ] + } + ] + } + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:08.451000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:10.768000" + }, + "cpu_time": 0.21, + "wall_time": 2.38 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "escf" + } +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_output.json new file mode 100644 index 0000000..53bf85d --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_output.json @@ -0,0 +1,2706 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "EscfOutput", + "@version": "1.3.0", + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": null, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "escf": { + "@module": "turbomoleio.output.data", + "@class": "EscfData", + "@version": "1.3.0", + "calc_type": "RPA TRIPLET-EXCITATION", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "EscfIterationData", + "@version": "1.3.0", + "steps": [ + [ + [ + "a1", + 0, + 0.1246374408123256 + ], + [ + "a2", + 9, + 7.348166357137622e-15 + ], + [ + "b1", + 0, + 0.09181206046462143 + ], + [ + "b2", + 10, + 5.215985075398134e-14 + ] + ], + [ + [ + "a1", + 10, + 7.745012815871526e-14 + ], + [ + "a2", + 9, + 7.348166357137622e-15 + ], + [ + "b1", + 10, + 4.175781234104372e-14 + ], + [ + "b2", + 10, + 5.215985075398134e-14 + ] + ] + ], + "converged": true + }, + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 5, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 155298, + "max_treated_vectors": 58, + "irrep_data": { + "a1": { + "tensor_space_dim": 24, + "n_roots": 10 + }, + "a2": { + "tensor_space_dim": 9, + "n_roots": 9 + }, + "b1": { + "tensor_space_dim": 19, + "n_roots": 10 + }, + "b2": { + "tensor_space_dim": 13, + "n_roots": 10 + } + }, + "gs_tot_en": -76.34300618267, + "excitations": { + "a1": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -76.01823453488805, + "osc_stre": 0.1313093878710515, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 99.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.778761 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.31433, + "anisotropy": 1.134437, + "moment": [ + [ + -1.162068, + 0.0, + 0.0 + ], + [ + 0.0, + -0.265591, + 0.0 + ], + [ + 0.0, + 0.0, + 0.11333 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.79291100961957, + "osc_stre": 0.174496449304758, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 98.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.689795 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -3.252909, + "anisotropy": 1.972194, + "moment": [ + [ + -2.392923, + 0.0, + 0.0 + ], + [ + 0.0, + -0.540236, + 0.0 + ], + [ + 0.0, + 0.0, + -0.319752 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.45404366868868, + "osc_stre": 0.09084914009269274, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 59.2 + }, + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 25.5 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 12.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.391529 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.202937, + "anisotropy": 0.869381, + "moment": [ + [ + -0.9741, + 0.0, + 0.0 + ], + [ + 0.0, + -0.189188, + 0.0 + ], + [ + 0.0, + 0.0, + -0.039649 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.41543956234747, + "osc_stre": 0.004405119560493983, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 70.8 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 24.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.084402 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -2.3237520000000003, + "anisotropy": 0.201491, + "moment": [ + [ + -0.760907, + 0.0, + 0.0 + ], + [ + 0.0, + -0.665696, + 0.0 + ], + [ + 0.0, + 0.0, + -0.897149 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.37035195620906, + "osc_stre": 0.2839929522540723, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 84.1 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 15.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.66179 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.5670349999999997, + "anisotropy": 0.241615, + "moment": [ + [ + -0.451837, + 0.0, + 0.0 + ], + [ + 0.0, + -0.432177, + 0.0 + ], + [ + 0.0, + 0.0, + -0.683021 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.33830226042343, + "osc_stre": 0.007296036371497148, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 92.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.104369 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 3.312759, + "anisotropy": 1.162583, + "moment": [ + [ + 0.512091, + 0.0, + 0.0 + ], + [ + 0.0, + 1.833394, + 0.0 + ], + [ + 0.0, + 0.0, + 0.967275 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.23643041802295, + "osc_stre": 0.05343328082331574, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 94.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.269129 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 2.392716, + "anisotropy": 1.621777, + "moment": [ + [ + 0.279761, + 0.0, + 0.0 + ], + [ + 0.0, + 0.234514, + 0.0 + ], + [ + 0.0, + 0.0, + 1.878441 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.95384853558053, + "osc_stre": 0.04811610985141787, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.227937 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.81279, + "anisotropy": 0.402903, + "moment": [ + [ + 0.539242, + 0.0, + 0.0 + ], + [ + 0.0, + 0.125974, + 0.0 + ], + [ + 0.0, + 0.0, + 0.147573 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.90839859812498, + "osc_stre": 0.04405808732321431, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 95.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.214631 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.2207, + "anisotropy": 0.563509, + "moment": [ + [ + -0.780046, + 0.0, + 0.0 + ], + [ + 0.0, + -0.182657, + 0.0 + ], + [ + 0.0, + 0.0, + -0.257997 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.84207924518309, + "osc_stre": 0.009423586862392063, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 95.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.097045 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.302259, + "anisotropy": 1.003757, + "moment": [ + [ + 0.713084, + 0.0, + 0.0 + ], + [ + 0.0, + -0.439145, + 0.0 + ], + [ + 0.0, + 0.0, + 0.02832 + ] + ] + } + } + ] + } + ], + "a2": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -76.00822783802636, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 99.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.001046 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.489597, + "moment": [ + [ + 0.0, + 0.282669, + 0.0 + ], + [ + 0.282669, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.57867260453982, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 99.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.001276 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.809306, + "moment": [ + [ + 0.0, + -0.467253, + 0.0 + ], + [ + -0.467253, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.12879342459158, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 92.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -5.5e-05 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.038458, + "moment": [ + [ + 0.0, + -0.599554, + 0.0 + ], + [ + -0.599554, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.0222176880603, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 92.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000574 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.74688, + "moment": [ + [ + 0.0, + -0.431211, + 0.0 + ], + [ + -0.431211, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.58540882603756, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 97.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000514 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.272294, + "moment": [ + [ + 0.0, + 0.157209, + 0.0 + ], + [ + 0.157209, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.36482833618534, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b2", + "energy": 68.79, + "spin": null + }, + "coeff": 96.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000644 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.191521, + "moment": [ + [ + 0.0, + -0.110574, + 0.0 + ], + [ + -0.110574, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.13420412838164, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "b1", + "energy": 81.78, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000115 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.413375, + "moment": [ + [ + 0.0, + 0.238662, + 0.0 + ], + [ + 0.238662, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.00661741363095, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 99.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000688 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.793484, + "moment": [ + [ + 0.0, + -0.458118, + 0.0 + ], + [ + -0.458118, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -55.10014038527046, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "a1", + "energy": -510.23, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 100.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 3e-06 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.026689, + "moment": [ + [ + 0.0, + 0.015409, + 0.0 + ], + [ + 0.015409, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "b1": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.94231204094471, + "osc_stre": 0.2262610442217877, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.920331, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.001742, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.644868, + "moment": [ + [ + 0.0, + 0.0, + -0.372315 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.372315, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.8559820312836, + "osc_stre": 0.2777796399824467, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 97.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.924955, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000309, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.552693, + "moment": [ + [ + 0.0, + 0.0, + 0.319097 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.319097, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.526049332718, + "osc_stre": 0.3581528903420834, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 98.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.810924, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.002865, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.964278, + "moment": [ + [ + 0.0, + 0.0, + -0.556726 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.556726, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.34552516922788, + "osc_stre": 0.08414035200812718, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 92.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.35571, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000818, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.036339, + "moment": [ + [ + 0.0, + 0.0, + -0.59833 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.59833, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.28797115415371, + "osc_stre": 0.2214315864696532, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 90.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.561089, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000368, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.373781, + "moment": [ + [ + 0.0, + 0.0, + -0.215802 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.215802, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.05974130599394, + "osc_stre": 0.1701379379535982, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 78.9 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 21.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.445952, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.00161, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.164301, + "moment": [ + [ + 0.0, + 0.0, + -0.67221 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.67221, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.00049027457096, + "osc_stre": 0.005612486793166832, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 78.8 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 20.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.079189, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000729, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.384568, + "moment": [ + [ + 0.0, + 0.0, + 0.22203 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.22203, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.92062784645103, + "osc_stre": 0.001383020408469612, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 98.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.03819, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000984, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.17932, + "moment": [ + [ + 0.0, + 0.0, + -0.680881 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.680881, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.79144022404836, + "osc_stre": 0.0311461276358944, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.173525, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000428, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.516707, + "moment": [ + [ + 0.0, + 0.0, + -0.298321 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.298321, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.44746414239671, + "osc_stre": 0.09313921044836769, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.271485, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000977, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.656364, + "moment": [ + [ + 0.0, + 0.0, + 0.378952 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.378952, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "b2": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -76.08891309318071, + "osc_stre": 0.01444211774765394, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 100.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.291988, + 0.0 + ], + "magnetic_dipole": [ + -0.000282, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.1709, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.098669 + ], + [ + 0.0, + -0.098669, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.4998229128459, + "osc_stre": 0.1866850354372666, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 99.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.576288, + 0.0 + ], + "magnetic_dipole": [ + 0.001725, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.451549, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.260702 + ], + [ + 0.0, + -0.260702, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.28070931032175, + "osc_stre": 0.01184729127031465, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 84.2 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 15.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.12934, + 0.0 + ], + "magnetic_dipole": [ + -0.000399, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.470922, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.849237 + ], + [ + 0.0, + 0.849237, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.19063257920865, + "osc_stre": 1.706350575088063e-05, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 84.2 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 15.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.004713, + 0.0 + ], + "magnetic_dipole": [ + 0.000723, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.50837, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.293507 + ], + [ + 0.0, + -0.293507, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.0478666594856, + "osc_stre": 0.52752901174764, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.781647, + 0.0 + ], + "magnetic_dipole": [ + -0.002174, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.520233, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.300356 + ], + [ + 0.0, + 0.300356, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.60446365779657, + "osc_stre": 0.07023608050783973, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 99.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.246169, + 0.0 + ], + "magnetic_dipole": [ + 0.001221, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.063929, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.036909 + ], + [ + 0.0, + -0.036909, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.68591641921864, + "osc_stre": 0.06977753602944474, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 8, + "irrep": "a1", + "energy": 67.45, + "spin": null + }, + "coeff": 91.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.198472, + 0.0 + ], + "magnetic_dipole": [ + 0.00086, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.129434, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.074729 + ], + [ + 0.0, + -0.074729, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.58415240678939, + "osc_stre": 1.098716013399029, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b2", + "energy": 68.79, + "spin": null + }, + "coeff": 91.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.772901, + 0.0 + ], + "magnetic_dipole": [ + 0.003078, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.272895, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.734906 + ], + [ + 0.0, + -0.734906, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.43561216778127, + "osc_stre": 0.3280400058904574, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 95.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.411393, + 0.0 + ], + "magnetic_dipole": [ + 0.00117, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.340846, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.196787 + ], + [ + 0.0, + -0.196787, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.33804858243694, + "osc_stre": 0.4465036699568586, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 9, + "irrep": "a1", + "energy": 77.83, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.472105, + 0.0 + ], + "magnetic_dipole": [ + 0.002567, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.789818, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.456002 + ], + [ + 0.0, + -0.456002, + 0.0 + ] + ] + } + } + ] + } + ] + } + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790525 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "O", + "species": [ + { + "element": "O", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + -0.38395982917561094 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 0.7499151287230262, + 0.0, + 0.19197991458780547 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -0.7499151287230262, + 0.0, + 0.19197991458780547 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": 47 + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:08.451000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:10.768000" + }, + "cpu_time": 0.21, + "wall_time": 2.38 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "escf" + }, + "cosmo": null, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 3.3e-11, + "thize": 1e-05, + "thime": 5 + }, + "symmetry": { + "@module": "turbomoleio.output.data", + "@class": "SymmetryData", + "@version": "1.3.0", + "symbol": "c2v", + "n_reps": 4, + "reps": [ + "a1", + "a2", + "b1", + "b2" + ] + } +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_parser.json new file mode 100644 index 0000000..22f4820 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_parser.json @@ -0,0 +1,2558 @@ +{ + "all_done": true, + "header": { + "executable": "escf", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:08.451000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790525 + ] + }, + "coordinates": { + "coords": [ + [ + 0.0, + 0.0, + -0.72557892 + ], + [ + 1.41713421, + 0.0, + 0.36278946 + ], + [ + -1.41713421, + 0.0, + 0.36278946 + ] + ], + "species": [ + "o", + "h", + "h" + ], + "charges": [ + 8.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": 47 + }, + "symmetry": { + "symbol": "c2v", + "n_reps": 4, + "reps": [ + "a1", + "a2", + "b1", + "b2" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": null, + "pre_scf_run": null, + "scf_iterations": null, + "scf_energies": null, + "cosmo_results": null, + "electrostatic_moments": null, + "timings": { + "cpu_time": 0.21, + "wall_time": 2.38, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:10.768000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 3.3e-11, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": { + "calc_type": "RPA TRIPLET-EXCITATION", + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 5, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 155298, + "max_treated_vectors": 58, + "irrep_data": { + "a1": { + "tensor_space_dim": 24, + "n_roots": 10 + }, + "a2": { + "tensor_space_dim": 9, + "n_roots": 9 + }, + "b1": { + "tensor_space_dim": 19, + "n_roots": 10 + }, + "b2": { + "tensor_space_dim": 13, + "n_roots": 10 + } + } + }, + "escf_iterations": { + "steps": [ + [ + [ + "a1", + 0, + 0.1246374408123256 + ], + [ + "a2", + 9, + 7.348166357137622e-15 + ], + [ + "b1", + 0, + 0.09181206046462143 + ], + [ + "b2", + 10, + 5.215985075398134e-14 + ] + ], + [ + [ + "a1", + 10, + 7.745012815871526e-14 + ], + [ + "a2", + 9, + 7.348166357137622e-15 + ], + [ + "b1", + 10, + 4.175781234104372e-14 + ], + [ + "b2", + 10, + 5.215985075398134e-14 + ] + ] + ], + "converged": true + }, + "escf_gs_total_en": -76.34300618267, + "escf_excitations": { + "a1": [ + { + "tot_en": -76.01823453488805, + "osc_stre": 0.1313093878710515, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 99.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.778761 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.31433, + "anisotropy": 1.134437, + "moment": [ + [ + -1.162068, + 0.0, + 0.0 + ], + [ + 0.0, + -0.265591, + 0.0 + ], + [ + 0.0, + 0.0, + 0.11333 + ] + ] + } + } + ] + }, + { + "tot_en": -75.79291100961957, + "osc_stre": 0.174496449304758, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 98.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.689795 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -3.252909, + "anisotropy": 1.972194, + "moment": [ + [ + -2.392923, + 0.0, + 0.0 + ], + [ + 0.0, + -0.540236, + 0.0 + ], + [ + 0.0, + 0.0, + -0.319752 + ] + ] + } + } + ] + }, + { + "tot_en": -75.45404366868868, + "osc_stre": 0.09084914009269274, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 59.2 + }, + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 25.5 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 12.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.391529 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.202937, + "anisotropy": 0.869381, + "moment": [ + [ + -0.9741, + 0.0, + 0.0 + ], + [ + 0.0, + -0.189188, + 0.0 + ], + [ + 0.0, + 0.0, + -0.039649 + ] + ] + } + } + ] + }, + { + "tot_en": -75.41543956234747, + "osc_stre": 0.004405119560493983, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 70.8 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 24.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.084402 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -2.3237520000000003, + "anisotropy": 0.201491, + "moment": [ + [ + -0.760907, + 0.0, + 0.0 + ], + [ + 0.0, + -0.665696, + 0.0 + ], + [ + 0.0, + 0.0, + -0.897149 + ] + ] + } + } + ] + }, + { + "tot_en": -75.37035195620906, + "osc_stre": 0.2839929522540723, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 84.1 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 15.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.66179 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.5670349999999997, + "anisotropy": 0.241615, + "moment": [ + [ + -0.451837, + 0.0, + 0.0 + ], + [ + 0.0, + -0.432177, + 0.0 + ], + [ + 0.0, + 0.0, + -0.683021 + ] + ] + } + } + ] + }, + { + "tot_en": -75.33830226042343, + "osc_stre": 0.007296036371497148, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 92.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.104369 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 3.312759, + "anisotropy": 1.162583, + "moment": [ + [ + 0.512091, + 0.0, + 0.0 + ], + [ + 0.0, + 1.833394, + 0.0 + ], + [ + 0.0, + 0.0, + 0.967275 + ] + ] + } + } + ] + }, + { + "tot_en": -75.23643041802295, + "osc_stre": 0.05343328082331574, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 94.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.269129 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 2.392716, + "anisotropy": 1.621777, + "moment": [ + [ + 0.279761, + 0.0, + 0.0 + ], + [ + 0.0, + 0.234514, + 0.0 + ], + [ + 0.0, + 0.0, + 1.878441 + ] + ] + } + } + ] + }, + { + "tot_en": -74.95384853558053, + "osc_stre": 0.04811610985141787, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.227937 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.81279, + "anisotropy": 0.402903, + "moment": [ + [ + 0.539242, + 0.0, + 0.0 + ], + [ + 0.0, + 0.125974, + 0.0 + ], + [ + 0.0, + 0.0, + 0.147573 + ] + ] + } + } + ] + }, + { + "tot_en": -74.90839859812498, + "osc_stre": 0.04405808732321431, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 95.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.214631 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.2207, + "anisotropy": 0.563509, + "moment": [ + [ + -0.780046, + 0.0, + 0.0 + ], + [ + 0.0, + -0.182657, + 0.0 + ], + [ + 0.0, + 0.0, + -0.257997 + ] + ] + } + } + ] + }, + { + "tot_en": -74.84207924518309, + "osc_stre": 0.009423586862392063, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 95.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.097045 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.302259, + "anisotropy": 1.003757, + "moment": [ + [ + 0.713084, + 0.0, + 0.0 + ], + [ + 0.0, + -0.439145, + 0.0 + ], + [ + 0.0, + 0.0, + 0.02832 + ] + ] + } + } + ] + } + ], + "a2": [ + { + "tot_en": -76.00822783802636, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 99.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.001046 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.489597, + "moment": [ + [ + 0.0, + 0.282669, + 0.0 + ], + [ + 0.282669, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.57867260453982, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 99.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.001276 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.809306, + "moment": [ + [ + 0.0, + -0.467253, + 0.0 + ], + [ + -0.467253, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.12879342459158, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 92.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -5.5e-05 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.038458, + "moment": [ + [ + 0.0, + -0.599554, + 0.0 + ], + [ + -0.599554, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.0222176880603, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 92.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000574 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.74688, + "moment": [ + [ + 0.0, + -0.431211, + 0.0 + ], + [ + -0.431211, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -73.58540882603756, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 97.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000514 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.272294, + "moment": [ + [ + 0.0, + 0.157209, + 0.0 + ], + [ + 0.157209, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -73.36482833618534, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b2", + "energy": 68.79, + "spin": null + }, + "coeff": 96.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000644 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.191521, + "moment": [ + [ + 0.0, + -0.110574, + 0.0 + ], + [ + -0.110574, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -73.13420412838164, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "b1", + "energy": 81.78, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000115 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.413375, + "moment": [ + [ + 0.0, + 0.238662, + 0.0 + ], + [ + 0.238662, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -73.00661741363095, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 99.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000688 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.793484, + "moment": [ + [ + 0.0, + -0.458118, + 0.0 + ], + [ + -0.458118, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -55.10014038527046, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "a1", + "energy": -510.23, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 100.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 3e-06 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.026689, + "moment": [ + [ + 0.0, + 0.015409, + 0.0 + ], + [ + 0.015409, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "b1": [ + { + "tot_en": -75.94231204094471, + "osc_stre": 0.2262610442217877, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.920331, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.001742, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.644868, + "moment": [ + [ + 0.0, + 0.0, + -0.372315 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.372315, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.8559820312836, + "osc_stre": 0.2777796399824467, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 97.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.924955, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000309, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.552693, + "moment": [ + [ + 0.0, + 0.0, + 0.319097 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.319097, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.526049332718, + "osc_stre": 0.3581528903420834, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 98.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.810924, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.002865, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.964278, + "moment": [ + [ + 0.0, + 0.0, + -0.556726 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.556726, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.34552516922788, + "osc_stre": 0.08414035200812718, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 92.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.35571, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000818, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.036339, + "moment": [ + [ + 0.0, + 0.0, + -0.59833 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.59833, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.28797115415371, + "osc_stre": 0.2214315864696532, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 90.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.561089, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000368, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.373781, + "moment": [ + [ + 0.0, + 0.0, + -0.215802 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.215802, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.05974130599394, + "osc_stre": 0.1701379379535982, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 78.9 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 21.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.445952, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.00161, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.164301, + "moment": [ + [ + 0.0, + 0.0, + -0.67221 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.67221, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.00049027457096, + "osc_stre": 0.005612486793166832, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 78.8 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 20.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.079189, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000729, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.384568, + "moment": [ + [ + 0.0, + 0.0, + 0.22203 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.22203, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -74.92062784645103, + "osc_stre": 0.001383020408469612, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 98.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.03819, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000984, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.17932, + "moment": [ + [ + 0.0, + 0.0, + -0.680881 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.680881, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -74.79144022404836, + "osc_stre": 0.0311461276358944, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.173525, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000428, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.516707, + "moment": [ + [ + 0.0, + 0.0, + -0.298321 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.298321, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -74.44746414239671, + "osc_stre": 0.09313921044836769, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.271485, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000977, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.656364, + "moment": [ + [ + 0.0, + 0.0, + 0.378952 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.378952, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "b2": [ + { + "tot_en": -76.08891309318071, + "osc_stre": 0.01444211774765394, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 100.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.291988, + 0.0 + ], + "magnetic_dipole": [ + -0.000282, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.1709, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.098669 + ], + [ + 0.0, + -0.098669, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.4998229128459, + "osc_stre": 0.1866850354372666, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 99.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.576288, + 0.0 + ], + "magnetic_dipole": [ + 0.001725, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.451549, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.260702 + ], + [ + 0.0, + -0.260702, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.28070931032175, + "osc_stre": 0.01184729127031465, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 84.2 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 15.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.12934, + 0.0 + ], + "magnetic_dipole": [ + -0.000399, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.470922, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.849237 + ], + [ + 0.0, + 0.849237, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.19063257920865, + "osc_stre": 1.706350575088063e-05, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 84.2 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 15.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.004713, + 0.0 + ], + "magnetic_dipole": [ + 0.000723, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.50837, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.293507 + ], + [ + 0.0, + -0.293507, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.0478666594856, + "osc_stre": 0.52752901174764, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.781647, + 0.0 + ], + "magnetic_dipole": [ + -0.002174, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.520233, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.300356 + ], + [ + 0.0, + 0.300356, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -74.60446365779657, + "osc_stre": 0.07023608050783973, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 99.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.246169, + 0.0 + ], + "magnetic_dipole": [ + 0.001221, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.063929, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.036909 + ], + [ + 0.0, + -0.036909, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -73.68591641921864, + "osc_stre": 0.06977753602944474, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 8, + "irrep": "a1", + "energy": 67.45, + "spin": null + }, + "coeff": 91.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.198472, + 0.0 + ], + "magnetic_dipole": [ + 0.00086, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.129434, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.074729 + ], + [ + 0.0, + -0.074729, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -73.58415240678939, + "osc_stre": 1.098716013399029, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b2", + "energy": 68.79, + "spin": null + }, + "coeff": 91.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.772901, + 0.0 + ], + "magnetic_dipole": [ + 0.003078, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.272895, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.734906 + ], + [ + 0.0, + -0.734906, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -73.43561216778127, + "osc_stre": 0.3280400058904574, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 95.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.411393, + 0.0 + ], + "magnetic_dipole": [ + 0.00117, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.340846, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.196787 + ], + [ + 0.0, + -0.196787, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -73.33804858243694, + "osc_stre": 0.4465036699568586, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 9, + "irrep": "a1", + "energy": 77.83, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.472105, + 0.0 + ], + "magnetic_dipole": [ + 0.002567, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.789818, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.456002 + ], + [ + 0.0, + -0.456002, + 0.0 + ] + ] + } + } + ] + } + ] + }, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/escf.log b/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/escf.log new file mode 100644 index 0000000..e3792c1 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/escf.log @@ -0,0 +1,1347 @@ + + escf (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:19:02.284 + + + + + e s c f + + TURBOMOLE GmbH + + + integral direct evaluation of + + * excitation energies and transition moments + * dynamic response properties + * stabilities + + + + references (see also programs dscf and ridft) + + implementation and benchmarks (review) + F. Furche and D. Rappoport, + "Density functional methods for excited states: + equilibrium structure and electronic spectra", + ch. III of "Computational Photochemistry", ed. by + M. Olivucci, vol. 16 of "Theoretical and Computational + Chemistry", Elsevier, Amsterdam, 2005. + + Bethe-Salpeter equation + K. Krause and W. Klopper, + J. Comput. Chem. 38 (2017) 383. + + 2c BSE, GW and hybrid TD-DFT + C. Holzer and W. Klopper + J. Chem. Phys. 150, 204116 (2019) + + nonorthonormal Krylov space methods + F. Furche, B. T. Krull, B. D. Nguyen, and J. Kwon, + J. Chem. Phys. 144 (2016), 174105. + + two-component GW quasi particle energies + M. Kuehn and F. Weigend, + J. Chem. Theory Comput. 11 (2015), 969. + + two-component TDDFT with spin-orbit coupling + M. Kuehn and F. Weigend, + J. Chem. Theory Comput. 9 (2013), 5341. + M. Kuehn and F. Weigend, + J. Chem. Phys. 142 (2015), 034116. + + GW quasi particle energies + M. J. van Setten, F. Weigend, and F. Evers, + J. Chem. Theory Comput. 9 (2013), 232. + + Fast GW methods: RIGW, contour deformation + J. Chem. Phys. 150, 204116 (2019) + + current-density dependent meta-GGA Linear Response + J. E. Bates and F. Furche, + J. Chem. Phys. 137 (2012), 164105. + + spin-flip method + M. Kuehn and F. Weigend, + Chem. Phys. Chem. 12 (2011), 3331. + + RI-J method + R. Bauernschmitt, M. Haeser, O. Treutler, and R. Ahlrichs, + Chem. Phys. Lett. 264 (1997), 573. + + density functional implementation + R. Bauernschmitt and R. Ahlrichs, + Chem. Phys. Lett. 256 (1996), 454. + R. Bauernschmitt and R. Ahlrichs, + J. Chem. Phys. 104 (1996), 9047. + + UHF extension (RPA and CIS) + C. Ochsenfeld, J. Gauss, and R. Ahlrichs, + J. Chem. Phys. 103 (1995), 7401. + + integral direct algorithm + H. Weiss, R. Ahlrichs, and M. Haeser, + J. Chem. Phys. 99 (1993), 1262. + + Seminumerical and pseudospectral algorithms + C. Holzer, J. Chem. Phys. 153 (2020), 184115. + + Two-component static/dynamic polarizabilities, + and relativistic damped-response approach, + polarizabilities and damped response at GW-BSE level + M. Kehry, Y. J. Franzke, C. Holzer, and W. Klopper, + Mol. Phys. 118 (2020), e1755064 + + Nuclear spin-spin coupling constants + F. Mack, C. J. Schattenberg, M. Kaupp, F. Weigend, + J. Phys. Chem. A 2020, 124, 41, 8529 + + + + + UHF mode switched on ! + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + -1.15103064 -1.99364355 0.00000000 o 8.000 0 + 0.00000000 0.00000000 0.00000000 n 7.000 0 + -1.15103064 1.99364355 0.00000000 o 8.000 0 + 2.30206127 0.00000000 0.00000000 o 8.000 0 + + center of nuclear mass : 0.00000000 0.00000000 0.00000000 + center of nuclear charge: 0.00000000 0.00000000 0.00000000 + + ************************************************************************* + ridft_escf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 3 24 14 def-SV(P) [3s2p1d|7s4p1d] + n 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + --------------------------------------------------------------------------- + total: 4 96 56 + --------------------------------------------------------------------------- + + total number of primitive shells : 24 + total number of contracted shells : 24 + total number of cartesian basis functions : 60 + total number of SCF-basis functions : 56 + + + residuum convergence criterium : 0.10E-04 + + COSMO is enabled, use tighter integral screening thresholds + 7 + + integral neglect threshold : 0.33E-12 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + FOUND RI-J FLAG ! + + + AUXILIARY BASIS SET information: + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 3 39 37 def-SV(P) [6s3p3d1f|8s3p3d1f] + n 1 39 37 def-SV(P) [6s3p3d1f|8s3p3d1f] + --------------------------------------------------------------------------- + total: 4 156 148 + --------------------------------------------------------------------------- + + total number of primitive shells : 30 + total number of contracted shells : 52 + total number of cartesian basis functions : 172 + total number of SCF-basis functions : 148 + + RPA UHF-EXCITATION-CALCULATION (spin-conserved) + + FOUND DFT-FLAG ! + + + symmetry group of the molecule : c1 + + the group has the following generators : + c1(z) + + 1 symmetry operations found + + there are 1 real representations : a + + maximum number of shells which are related by symmetry : 1 + + IRREPs of excited states : a + + mo occupation : + irrep mo's occupied + a 56 16 + + number of basis functions : 56 + number of occupied orbitals : 16 + + ALPHA-Occupation: 16 + BETA-Occupation : 15 + COSMO: symmetry in response calc. w/out guarantee + ============================================================================== + COSMO switched on + ============================================================================== + COSMO stati: segments per atom: H 32 other atoms 92 + COSMO statistics: nps 240 npspher: 174 + COSMO surface: + number of segments: 240 + area (bohr**2): 267.911883 + volume (bohr**3): 374.012013 + COSMO: check number of disjunct cavities: + + ... OK contiguous cavity found + Using refractive index n = 1.30000000000000 + Screening function (n**2-1)/(n**2+0.5) = 0.315068493150685 + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 4 + partition function : becke + partition sharpness : 3 + + + ---------------------- + RI - INFORMATION + ---------------------- + + biggest AO integral is expected to be 4.776656448 + + Threshold for integral neglect (rithr2): 0.33E-12 + Threshold for integral neglect (rithr1): 0.33E-12 + + Contributions to RI integral batches: + neglected integral batches: 3 + direct contribution: 0 + memory contribution: 297 + Core memory available (ricore) 500 MiB + Core memory needed for (P|Q) and Cholesky 1 MiB + Core memory used for integrals 3 MiB + + **************************************** + Memory allocated for RIDFT 3 MiB + **************************************** + + MOs are in ASCII format ! + + + reading orbital data $uhfmo_alpha from file alpha + orbital characterization : scfconv=7 + + reading orbital data $uhfmo_beta from file beta + orbital characterization : scfconv=7 + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 7274 + + Calculating ground state density on molecular grid + + Integral of ground state total density: Na = 31.00031443604871 + + Integral of ground state spin density: Nb = 1.000026296764440 + + + all orbitals will be included in the transformation + + number of non-frozen orbitals : 56 + number of non-frozen occupied orbitals : 16 + all orbitals will be included in the transformation + + number of non-frozen orbitals : 56 + number of non-frozen occupied orbitals : 15 + + dimension of super-tensorspace: 1 + + IRREP tensor space dimension number of roots + + a 1255 10 + + maximum number of Davidson iterations set to 35 + + + machine precision: 2.22D-16 + + + logfile unrs_a will be constructed + + + Nonorthonormal Krylov Space Iteration + + + total number of roots to be determined: 10 + + + maximum core memory set to 500 MB, + corresponding to 8747 vectors in CAO basis + + + maximum number of simultaneously treated vectors (including degeneracy): 18 + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 1 a 0 7.883659515532002D-02 + + 2 a 0 2.178615279982761D-02 + + 3 a 0 3.048709095992678D-03 + + 4 a 1 5.923431214770775D-04 + + 5 a 5 1.460143461808554D-04 + + 6 a 9 2.590244602223270D-05 + + 7 a 10 9.666026785391291D-06 + + + converged! + + + Switching to fine grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 25272 + + Calculating ground state density on molecular grid + + Integral of ground state total density: Na = 30.99999497960500 + + Integral of ground state spin density: Nb = 1.000000046566693 + + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 8 a 0 1.111836680211689D-04 + + + NOTE: Residual norms are larger than 1.00D-05 due to mgrid option! + + Eigenpairs written on logfile unrs_a + + + + IRREP Vector Eigenvalue Euclidean residual norm + + a 1 4.404678736480582D-03 2.600025682455084D-05 + 2 4.405956467254631D-03 2.691682032419016D-05 + 3 9.537025330603622D-03 6.623579272014085D-05 + 4 9.538097754898667D-03 7.869282285924706D-05 + 5 3.472725877751889D-02 3.615431700966352D-05 + 6 3.649860120850448D-02 1.111836680211689D-04 + 7 3.650044715823448D-02 9.795608322480321D-05 + 8 4.951021926165934D-02 4.116895735229065D-05 + 9 4.951710495167214D-02 4.923040673325581D-05 + 10 6.653853213727975D-02 3.749479763378315D-05 + + + + + + + Selection rules for point group c1 + + + Subduction with respect to c1 : + + Polar vector representation: a + + Axial vector representation: a + + Symmetric second rank tensor representation: a + + + + + Ground state + + + Total energy: -280.0695809101000 + + Charge: + + elec nuc total + + -31.000000 31.000000 -0.000000 + + + Electric dipole moment: + + elec nuc total + + x 0.000456 0.000000 0.000456 Norm: 0.000461 + y 0.000059 0.000000 0.000059 + z -0.000025 0.000000 -0.000025 Norm / debye: 0.001171 + + + Electric quadrupole moment: + + elec nuc total + + xx -80.296747 63.593833 -16.702914 + yy -80.297434 63.593833 -16.703601 1/3*trace: -15.961806 + zz -14.478903 0.000000 -14.478903 + xy 0.000015 0.000000 0.000015 + xz -0.000001 0.000000 -0.000001 Anisotropy: 2.224354 + yz -0.000022 0.000000 -0.000022 + + + + ============================================================================== + + I R R E P a + + ============================================================================== + + + Excitation is electric dipole allowed + + Excitation is magnetic dipole allowed + + Excitation is electric quadrupole allowed + + + + + 1 a excitation + + + Total energy: -280.0032131563601 + + Excitation energy: 0.6636775373990431E-01 + + Excitation energy / eV: 1.805959239929535 + + Excitation energy / nm: 686.5284734294775 + + Excitation energy / cm^(-1): 14566.03824245404 + + + Oscillator strength: + + velocity representation: 0.1783312568027102E-09 + + length representation: 0.3719565467446828E-09 + + mixed representation: 0.2564349468506299E-09 + + + Rotatory strength: + + velocity representation: -0.1465175492275226E-06 + + velocity rep. / 10^(-40)erg*cm^3: -0.9465739368137792E-02 + + length representation: -0.2148551926178635E-06 + + length rep. / 10^(-40)erg*cm^3: -0.1388068027300655E-01 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 15 a beta -8.83 16 a beta -6.90 98.4 + + = 0.0019384779 + = 0.9980615221 + = -0.0007884730 + + 1/2 = 0.4992115270 + 1/2 = 0.5007884730 + + = 1.0000000000 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000060 Norm: 0.000063 + y -0.000019 + z -0.000005 Norm / debye: 0.000161 + + + Electric transition dipole moment (length rep.): + + x 0.000089 Norm: 0.000092 + y -0.000020 + z -0.000003 Norm / debye: 0.000233 + + + Magnetic transition dipole moment / i: + + x -0.002347 Norm: 0.002360 + y 0.000244 + z 0.000000 Norm / Bohr mag.: 0.646737 + + + Electric quadrupole transition moment: + + xx 0.000104 + yy -0.000096 1/3*trace: 0.000001 + zz -0.000005 + xy 0.000016 + xz 0.021883 Anisotropy: 0.366824 + yz 0.210652 + + + + + 2 a excitation + + + Total energy: -280.0032035309166 + + Excitation energy: 0.6637737918338318E-01 + + Excitation energy / eV: 1.806221161685351 + + Excitation energy / nm: 686.4289193178369 + + Excitation energy / cm^(-1): 14568.15078310689 + + + Oscillator strength: + + velocity representation: 0.1459431336082982E-08 + + length representation: 0.4241929354639340E-09 + + mixed representation: 0.1164606480597624E-09 + + + Rotatory strength: + + velocity representation: -0.1623956836572353E-06 + + velocity rep. / 10^(-40)erg*cm^3: -0.1049154332784314E-01 + + length representation: -0.2239185648833963E-06 + + length rep. / 10^(-40)erg*cm^3: -0.1446621777424280E-01 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 14 a beta -8.83 16 a beta -6.90 98.4 + + = 0.0019367111 + = 0.9980632889 + = -0.0007880810 + + 1/2 = 0.4992119190 + 1/2 = 0.5007880810 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.000009 Norm: 0.000182 + y -0.000068 + z 0.000168 Norm / debye: 0.000462 + + + Electric transition dipole moment (length rep.): + + x -0.000003 Norm: 0.000098 + y -0.000095 + z -0.000023 Norm / debye: 0.000249 + + + Magnetic transition dipole moment / i: + + x 0.000244 Norm: 0.002359 + y 0.002346 + z -0.000000 Norm / Bohr mag.: 0.646552 + + + Electric quadrupole transition moment: + + xx 0.000003 + yy 0.000004 1/3*trace: 0.000001 + zz -0.000004 + xy 0.000121 + xz 0.210642 Anisotropy: 0.366808 + yz -0.021891 + + + + + 3 a excitation + + + Total energy: -279.9719232154180 + + Excitation energy: 0.9765769468200457E-01 + + Excitation energy / eV: 2.657402219040928 + + Excitation energy / nm: 466.5618291355794 + + Excitation energy / cm^(-1): 21433.38647534631 + + + Oscillator strength: + + velocity representation: 0.8134625006937733E-02 + + length representation: 0.1213515055616938E-01 + + mixed representation: 0.9935537172876817E-02 + + + Rotatory strength: + + velocity representation: 0.1384973867718711E-06 + + velocity rep. / 10^(-40)erg*cm^3: 0.8947598245142126E-02 + + length representation: 0.1691598833380001E-06 + + length rep. / 10^(-40)erg*cm^3: 0.1092854320635417E-01 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 13 a beta -9.11 16 a beta -6.90 92.8 + + = 0.0331078774 + = 0.9668921226 + = 0.0234690349 + + 1/2 = 0.5234690349 + 1/2 = 0.4765309651 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.344088 Norm: 0.353477 + y -0.080927 + z -0.000004 Norm / debye: 0.898456 + + + Electric transition dipole moment (length rep.): + + x 0.420261 Norm: 0.431733 + y -0.098865 + z -0.000003 Norm / debye: 1.097363 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y -0.000000 + z 0.000000 Norm / Bohr mag.: 0.000109 + + + Electric quadrupole transition moment: + + xx 0.628228 + yy -0.628189 1/3*trace: 0.000007 + zz -0.000016 + xy 0.147829 + xz -0.000017 Anisotropy: 1.117809 + yz -0.000052 + + + + + 4 a excitation + + + Total energy: -279.9719177248412 + + Excitation energy: 0.9766318525882037E-01 + + Excitation energy / eV: 2.657551625301865 + + Excitation energy / nm: 466.5355992562713 + + Excitation energy / cm^(-1): 21434.59151766529 + + + Oscillator strength: + + velocity representation: 0.8122287060544180E-02 + + length representation: 0.1212432500695806E-01 + + mixed representation: 0.9923570311571818E-02 + + + Rotatory strength: + + velocity representation: 0.1476302374185368E-06 + + velocity rep. / 10^(-40)erg*cm^3: 0.9537624384435667E-02 + + length representation: 0.1803709060411251E-06 + + length rep. / 10^(-40)erg*cm^3: 0.1165282926981586E-01 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 12 a beta -9.11 16 a beta -6.90 92.8 + + = 0.0331009221 + = 0.9668990779 + = 0.0234547942 + + 1/2 = 0.5234547942 + 1/2 = 0.4765452058 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.080982 Norm: 0.353199 + y -0.343790 + z -0.000001 Norm / debye: 0.897749 + + + Electric transition dipole moment (length rep.): + + x -0.098915 Norm: 0.431528 + y -0.420038 + z -0.000003 Norm / debye: 1.096843 + + + Magnetic transition dipole moment / i: + + x -0.000000 Norm: 0.000000 + y -0.000000 + z 0.000000 Norm / Bohr mag.: 0.000136 + + + Electric quadrupole transition moment: + + xx -0.147860 + yy 0.147859 1/3*trace: 0.000001 + zz 0.000005 + xy 0.628187 + xz -0.000042 Anisotropy: 1.117786 + yz 0.000008 + + + + + 5 a excitation + + + Total energy: -279.8832283979690 + + Excitation energy: 0.1863525121309581 + + Excitation energy / eV: 5.070912034870232 + + Excitation energy / nm: 244.5008770688352 + + Excitation energy / cm^(-1): 40899.64877995930 + + + Oscillator strength: + + velocity representation: 0.1444787335222054E-11 + + length representation: 0.1432831275341385E-11 + + mixed representation: 0.8535093097959455E-12 + + + Rotatory strength: + + velocity representation: -0.3857531768224608E-12 + + velocity rep. / 10^(-40)erg*cm^3: -0.2492151316674277E-07 + + length representation: -0.4774971882692591E-12 + + length rep. / 10^(-40)erg*cm^3: -0.3084861818263608E-07 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 16 a alpha -8.17 17 a alpha -3.04 99.7 + + = 0.9972255905 + = 0.0027744095 + = 0.0006311074 + + 1/2 = 0.5006311074 + 1/2 = 0.4993688926 + + = 1.0000000000 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.000002 Norm: 0.000003 + y -0.000002 + z 0.000002 Norm / debye: 0.000009 + + + Electric transition dipole moment (length rep.): + + x -0.000003 Norm: 0.000003 + y -0.000001 + z -0.000001 Norm / debye: 0.000009 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000040 + + + Electric quadrupole transition moment: + + xx -0.000000 + yy -0.000006 1/3*trace: -0.000005 + zz -0.000010 + xy -0.000005 + xz -0.000013 Anisotropy: 0.000059 + yz 0.000031 + + + + + 6 a excitation + + + Total energy: -279.8785348391943 + + Excitation energy: 0.1910460709056967 + + Excitation energy / eV: 5.198630322136823 + + Excitation energy / nm: 238.4940577107748 + + Excitation energy / cm^(-1): 41929.76585871379 + + + Oscillator strength: + + velocity representation: 0.9739034102092466E-04 + + length representation: 0.1027026101658901E-03 + + mixed representation: 0.1000112060488071E-03 + + + Rotatory strength: + + velocity representation: 0.6602204130922899E-08 + + velocity rep. / 10^(-40)erg*cm^3: 0.4265341857548592E-03 + + length representation: 0.6779938106634969E-08 + + length rep. / 10^(-40)erg*cm^3: 0.4380166566248904E-03 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 15 a alpha -9.08 17 a alpha -3.04 46.2 + 14 a beta -8.83 17 a beta -2.91 39.9 + 15 a beta -8.83 17 a beta -2.91 12.9 + + = 0.4706720741 + = 0.5293279259 + = -0.4985094757 + + 1/2 = 0.0014905243 + 1/2 = 0.9985094757 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.008083 Norm: 0.027653 + y -0.026445 + z -0.000000 Norm / debye: 0.070286 + + + Electric transition dipole moment (length rep.): + + x 0.008308 Norm: 0.028397 + y -0.027154 + z -0.000000 Norm / debye: 0.072178 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y -0.000000 + z -0.000000 Norm / Bohr mag.: 0.000066 + + + Electric quadrupole transition moment: + + xx 0.004742 + yy -0.004736 1/3*trace: 0.000002 + zz 0.000001 + xy 0.015400 + xz 0.000022 Anisotropy: 0.027907 + yz 0.000007 + + + + + 7 a excitation + + + Total energy: -279.8785300080916 + + Excitation energy: 0.1910509020084294 + + Excitation energy / eV: 5.198761783187220 + + Excitation energy / nm: 238.4880269133181 + + Excitation energy / cm^(-1): 41930.82616320193 + + + Oscillator strength: + + velocity representation: 0.9773167850752149E-04 + + length representation: 0.1032848671235739E-03 + + mixed representation: 0.1004699085004897E-03 + + + Rotatory strength: + + velocity representation: 0.5277548592367868E-08 + + velocity rep. / 10^(-40)erg*cm^3: 0.3409550578849892E-03 + + length representation: 0.5425456433189068E-08 + + length rep. / 10^(-40)erg*cm^3: 0.3505106167862877E-03 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 14 a alpha -9.08 17 a alpha -3.04 46.2 + 15 a beta -8.83 17 a beta -2.91 39.9 + 14 a beta -8.83 17 a beta -2.91 12.9 + + = 0.4706500437 + = 0.5293499563 + = -0.4985090653 + + 1/2 = 0.0014909347 + 1/2 = 0.9985090653 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.026500 Norm: 0.027701 + y 0.008067 + z -0.000000 Norm / debye: 0.070408 + + + Electric transition dipole moment (length rep.): + + x 0.027245 Norm: 0.028477 + y 0.008285 + z -0.000000 Norm / debye: 0.072381 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000052 + + + Electric quadrupole transition moment: + + xx 0.015550 + yy -0.015538 1/3*trace: 0.000004 + zz 0.000001 + xy -0.004701 + xz -0.000006 Anisotropy: 0.028127 + yz 0.000018 + + + + + 8 a excitation + + + Total energy: -279.8470719905897 + + Excitation energy: 0.2225089195103409 + + Excitation energy / eV: 6.054778360154527 + + Excitation energy / nm: 204.7709042867492 + + Excitation energy / cm^(-1): 48835.06293698808 + + + Oscillator strength: + + velocity representation: 0.1577909312158840E-09 + + length representation: 0.1201117362086292E-09 + + mixed representation: 0.1371797128586697E-09 + + + Rotatory strength: + + velocity representation: 0.7074605216073807E-07 + + velocity rep. / 10^(-40)erg*cm^3: 0.4570535711311469E-02 + + length representation: 0.6172453712726647E-07 + + length rep. / 10^(-40)erg*cm^3: 0.3987702388867812E-02 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 13 a beta -9.11 17 a beta -2.91 93.7 + + = 0.0616548385 + = 0.9383451615 + = -0.2390648714 + + 1/2 = 0.2609351286 + 1/2 = 0.7390648714 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.000032 Norm: 0.000033 + y 0.000008 + z -0.000003 Norm / debye: 0.000083 + + + Electric transition dipole moment (length rep.): + + x -0.000028 Norm: 0.000028 + y 0.000007 + z 0.000000 Norm / debye: 0.000072 + + + Magnetic transition dipole moment / i: + + x -0.002194 Norm: 0.002201 + y 0.000184 + z 0.000000 Norm / Bohr mag.: 0.603359 + + + Electric quadrupole transition moment: + + xx -0.000045 + yy 0.000045 1/3*trace: -0.000000 + zz -0.000001 + xy -0.000004 + xz -0.018976 Anisotropy: 0.393491 + yz -0.226388 + + + + + 9 a excitation + + + Total energy: -279.8470565182872 + + Excitation energy: 0.2225243918128351 + + Excitation energy / eV: 6.055199383107359 + + Excitation energy / nm: 204.7566663987257 + + Excitation energy / cm^(-1): 48838.45871486408 + + + Oscillator strength: + + velocity representation: 0.3967989346121699E-09 + + length representation: 0.1653587585761768E-09 + + mixed representation: 0.2336045924180265E-09 + + + Rotatory strength: + + velocity representation: 0.7763391276571961E-07 + + velocity rep. / 10^(-40)erg*cm^3: 0.5015524681128144E-02 + + length representation: 0.6773590398298486E-07 + + length rep. / 10^(-40)erg*cm^3: 0.4376065640932115E-02 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 12 a beta -9.11 17 a beta -2.91 93.7 + + = 0.0616882338 + = 0.9383117662 + = -0.2391272097 + + 1/2 = 0.2608727903 + 1/2 = 0.7391272097 + + = 1.0000000000 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.000003 Norm: 0.000052 + y -0.000035 + z -0.000038 Norm / debye: 0.000131 + + + Electric transition dipole moment (length rep.): + + x -0.000002 Norm: 0.000033 + y -0.000031 + z -0.000013 Norm / debye: 0.000085 + + + Magnetic transition dipole moment / i: + + x -0.000184 Norm: 0.002201 + y -0.002194 + z -0.000000 Norm / Bohr mag.: 0.603306 + + + Electric quadrupole transition moment: + + xx -0.000001 + yy -0.000000 1/3*trace: -0.000001 + zz -0.000001 + xy 0.000061 + xz 0.226404 Anisotropy: 0.393520 + yz -0.018993 + + + + + 10 a excitation + + + Total energy: -279.8116302711450 + + Excitation energy: 0.2579506389549748 + + Excitation energy / eV: 7.019197028908454 + + Excitation energy / nm: 176.6359364124431 + + Excitation energy / cm^(-1): 56613.62122347212 + + + Oscillator strength: + + velocity representation: 0.1427839004851784E-08 + + length representation: 0.1847569671416052E-08 + + mixed representation: 0.1606922315300489E-08 + + + Rotatory strength: + + velocity representation: 0.3119648069210263E-06 + + velocity rep. / 10^(-40)erg*cm^3: 0.2015442907634413E-01 + + length representation: 0.3638879465011652E-06 + + length rep. / 10^(-40)erg*cm^3: 0.2350891397615510E-01 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 13 a alpha -10.06 17 a alpha -3.04 57.7 + 12 a alpha -10.06 17 a alpha -3.04 35.9 + + = 0.9361096979 + = 0.0638903021 + = 0.2391425575 + + 1/2 = 0.7391425575 + 1/2 = 0.2608574425 + + = 1.0000000000 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000077 Norm: 0.000091 + y -0.000044 + z -0.000021 Norm / debye: 0.000232 + + + Electric transition dipole moment (length rep.): + + x 0.000090 Norm: 0.000104 + y -0.000050 + z -0.000009 Norm / debye: 0.000263 + + + Magnetic transition dipole moment / i: + + x 0.003244 Norm: 0.003540 + y -0.001418 + z -0.000000 Norm / Bohr mag.: 0.970278 + + + Electric quadrupole transition moment: + + xx 0.000313 + yy -0.000315 1/3*trace: -0.000001 + zz -0.000002 + xy 0.000160 + xz 0.166717 Anisotropy: 0.721024 + yz 0.381441 + + SUMMARY OF EXCITATION ENERGIES AND DIPOLE OSCILLATOR STRENGTHS (velocity/length): + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a | 0.066368 | 1.80596 | 14566.038 | 686.528 | 0.00000 | 0.00000 | + | 2 a | 0.066377 | 1.80622 | 14568.151 | 686.429 | 0.00000 | 0.00000 | + | 3 a | 0.097658 | 2.65740 | 21433.386 | 466.562 | 0.00813 | 0.01214 | + | 4 a | 0.097663 | 2.65755 | 21434.592 | 466.536 | 0.00812 | 0.01212 | + | 5 a | 0.186353 | 5.07091 | 40899.649 | 244.501 | 0.00000 | 0.00000 | + | 6 a | 0.191046 | 5.19863 | 41929.766 | 238.494 | 0.00010 | 0.00010 | + | 7 a | 0.191051 | 5.19876 | 41930.826 | 238.488 | 0.00010 | 0.00010 | + | 8 a | 0.222509 | 6.05478 | 48835.063 | 204.771 | 0.00000 | 0.00000 | + | 9 a | 0.222524 | 6.05520 | 48838.459 | 204.757 | 0.00000 | 0.00000 | + | 10 a | 0.257951 | 7.01919 | 56613.621 | 176.636 | 0.00000 | 0.00000 | + ----------------------------------------------------------------------------------------------- + + + + + ------------------------------------------------------------------------ + total cpu-time : 2.11 seconds + total wall-time : 3.74 seconds + ------------------------------------------------------------------------ + + **** escf : all done **** + + + 2023-01-25 00:19:05.973 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_escf_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_escf_output.json new file mode 100644 index 0000000..cfaebd5 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_escf_output.json @@ -0,0 +1,788 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "EscfOnlyOutput", + "@version": "1.3.0", + "escf": { + "@module": "turbomoleio.output.data", + "@class": "EscfData", + "@version": "1.3.0", + "calc_type": "RPA UHF-EXCITATION", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "EscfIterationData", + "@version": "1.3.0", + "steps": [ + [ + [ + "a", + 0, + 0.07883659515532002 + ] + ], + [ + [ + "a", + 0, + 0.02178615279982761 + ] + ], + [ + [ + "a", + 0, + 0.003048709095992678 + ] + ], + [ + [ + "a", + 1, + 0.0005923431214770775 + ] + ], + [ + [ + "a", + 5, + 0.0001460143461808554 + ] + ], + [ + [ + "a", + 9, + 2.59024460222327e-05 + ] + ], + [ + [ + "a", + 10, + 9.666026785391291e-06 + ] + ] + ], + "converged": true + }, + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 16, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 8747, + "max_treated_vectors": 18, + "irrep_data": { + "a": { + "tensor_space_dim": 1255, + "n_roots": 10 + } + }, + "gs_tot_en": -280.0695809101, + "excitations": { + "a": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -280.0032131563601, + "osc_stre": 3.719565467446828e-10, + "rot_stre": -2.148551926178635e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 98.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 8.9e-05, + -2e-05, + -3e-06 + ], + "magnetic_dipole": [ + -0.002347, + 0.000244, + 0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 0.366824, + "moment": [ + [ + 0.000104, + 1.6e-05, + 0.021883 + ], + [ + 1.6e-05, + -9.6e-05, + 0.210652 + ], + [ + 0.021883, + 0.210652, + -5e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -280.0032035309166, + "osc_stre": 4.24192935463934e-10, + "rot_stre": -2.239185648833963e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 98.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -3e-06, + -9.5e-05, + -2.3e-05 + ], + "magnetic_dipole": [ + 0.000244, + 0.002346, + -0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 0.366808, + "moment": [ + [ + 3e-06, + 0.000121, + 0.210642 + ], + [ + 0.000121, + 4e-06, + -0.021891 + ], + [ + 0.210642, + -0.021891, + -4e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.971923215418, + "osc_stre": 0.01213515055616938, + "rot_stre": 1.691598833380001e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 92.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.420261, + -0.098865, + -3e-06 + ], + "magnetic_dipole": [ + 0.0, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 2.1e-05, + "anisotropy": 1.117809, + "moment": [ + [ + 0.628228, + 0.147829, + -1.7e-05 + ], + [ + 0.147829, + -0.628189, + -5.2e-05 + ], + [ + -1.7e-05, + -5.2e-05, + -1.6e-05 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.9719177248412, + "osc_stre": 0.01212432500695806, + "rot_stre": 1.803709060411251e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 92.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.098915, + -0.420038, + -3e-06 + ], + "magnetic_dipole": [ + -0.0, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 1.117786, + "moment": [ + [ + -0.14786, + 0.628187, + -4.2e-05 + ], + [ + 0.628187, + 0.147859, + 8e-06 + ], + [ + -4.2e-05, + 8e-06, + 5e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.883228397969, + "osc_stre": 1.432831275341385e-12, + "rot_stre": -4.774971882692591e-13, + "dominant_contributions": [ + { + "occ_orb": { + "index": 16, + "irrep": "a", + "energy": -8.17, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 99.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -3e-06, + -1e-06, + -1e-06 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.5000000000000002e-05, + "anisotropy": 5.9e-05, + "moment": [ + [ + -0.0, + -5e-06, + -1.3e-05 + ], + [ + -5e-06, + -6e-06, + 3.1e-05 + ], + [ + -1.3e-05, + 3.1e-05, + -1e-05 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.8785348391943, + "osc_stre": 0.0001027026101658901, + "rot_stre": 6.779938106634969e-09, + "dominant_contributions": [ + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -9.08, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 46.2 + }, + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 39.9 + }, + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 12.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.008308, + -0.027154, + -0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.0, + -0.0 + ], + "electric_quadrupole": { + "trace": 6e-06, + "anisotropy": 0.027907, + "moment": [ + [ + 0.004742, + 0.0154, + 2.2e-05 + ], + [ + 0.0154, + -0.004736, + 7e-06 + ], + [ + 2.2e-05, + 7e-06, + 1e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.8785300080916, + "osc_stre": 0.0001032848671235739, + "rot_stre": 5.425456433189068e-09, + "dominant_contributions": [ + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -9.08, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 46.2 + }, + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 39.9 + }, + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 12.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.027245, + 0.008285, + -0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 1.2e-05, + "anisotropy": 0.028127, + "moment": [ + [ + 0.01555, + -0.004701, + -6e-06 + ], + [ + -0.004701, + -0.015538, + 1.8e-05 + ], + [ + -6e-06, + 1.8e-05, + 1e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.8470719905897, + "osc_stre": 1.201117362086292e-10, + "rot_stre": 6.172453712726647e-08, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 93.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -2.8e-05, + 7e-06, + 0.0 + ], + "magnetic_dipole": [ + -0.002194, + 0.000184, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.0, + "anisotropy": 0.393491, + "moment": [ + [ + -4.5e-05, + -4e-06, + -0.018976 + ], + [ + -4e-06, + 4.5e-05, + -0.226388 + ], + [ + -0.018976, + -0.226388, + -1e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.8470565182872, + "osc_stre": 1.653587585761768e-10, + "rot_stre": 6.773590398298486e-08, + "dominant_contributions": [ + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 93.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -2e-06, + -3.1e-05, + -1.3e-05 + ], + "magnetic_dipole": [ + -0.000184, + -0.002194, + -0.0 + ], + "electric_quadrupole": { + "trace": -3e-06, + "anisotropy": 0.39352, + "moment": [ + [ + -1e-06, + 6.1e-05, + 0.226404 + ], + [ + 6.1e-05, + -0.0, + -0.018993 + ], + [ + 0.226404, + -0.018993, + -1e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.811630271145, + "osc_stre": 1.847569671416052e-09, + "rot_stre": 3.638879465011652e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -10.06, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 57.7 + }, + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -10.06, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 35.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 9e-05, + -5e-05, + -9e-06 + ], + "magnetic_dipole": [ + 0.003244, + -0.001418, + -0.0 + ], + "electric_quadrupole": { + "trace": -3e-06, + "anisotropy": 0.721024, + "moment": [ + [ + 0.000313, + 0.00016, + 0.166717 + ], + [ + 0.00016, + -0.000315, + 0.381441 + ], + [ + 0.166717, + 0.381441, + -2e-06 + ] + ] + } + } + ] + } + ] + } + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:02.284000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:05.973000" + }, + "cpu_time": 2.11, + "wall_time": 3.74 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "escf" + } +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_output.json new file mode 100644 index 0000000..2c463e6 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_output.json @@ -0,0 +1,940 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "EscfOutput", + "@version": "1.3.0", + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": { + "@module": "turbomoleio.output.data", + "@class": "RiData", + "@version": "1.3.0", + "ricore": 500, + "marij": false, + "rij_memory": 3, + "rik": false + }, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "escf": { + "@module": "turbomoleio.output.data", + "@class": "EscfData", + "@version": "1.3.0", + "calc_type": "RPA UHF-EXCITATION", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "EscfIterationData", + "@version": "1.3.0", + "steps": [ + [ + [ + "a", + 0, + 0.07883659515532002 + ] + ], + [ + [ + "a", + 0, + 0.02178615279982761 + ] + ], + [ + [ + "a", + 0, + 0.003048709095992678 + ] + ], + [ + [ + "a", + 1, + 0.0005923431214770775 + ] + ], + [ + [ + "a", + 5, + 0.0001460143461808554 + ] + ], + [ + [ + "a", + 9, + 2.59024460222327e-05 + ] + ], + [ + [ + "a", + 10, + 9.666026785391291e-06 + ] + ] + ], + "converged": true + }, + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 16, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 8747, + "max_treated_vectors": 18, + "irrep_data": { + "a": { + "tensor_space_dim": 1255, + "n_roots": 10 + } + }, + "gs_tot_en": -280.0695809101, + "excitations": { + "a": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -280.0032131563601, + "osc_stre": 3.719565467446828e-10, + "rot_stre": -2.148551926178635e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 98.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 8.9e-05, + -2e-05, + -3e-06 + ], + "magnetic_dipole": [ + -0.002347, + 0.000244, + 0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 0.366824, + "moment": [ + [ + 0.000104, + 1.6e-05, + 0.021883 + ], + [ + 1.6e-05, + -9.6e-05, + 0.210652 + ], + [ + 0.021883, + 0.210652, + -5e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -280.0032035309166, + "osc_stre": 4.24192935463934e-10, + "rot_stre": -2.239185648833963e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 98.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -3e-06, + -9.5e-05, + -2.3e-05 + ], + "magnetic_dipole": [ + 0.000244, + 0.002346, + -0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 0.366808, + "moment": [ + [ + 3e-06, + 0.000121, + 0.210642 + ], + [ + 0.000121, + 4e-06, + -0.021891 + ], + [ + 0.210642, + -0.021891, + -4e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.971923215418, + "osc_stre": 0.01213515055616938, + "rot_stre": 1.691598833380001e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 92.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.420261, + -0.098865, + -3e-06 + ], + "magnetic_dipole": [ + 0.0, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 2.1e-05, + "anisotropy": 1.117809, + "moment": [ + [ + 0.628228, + 0.147829, + -1.7e-05 + ], + [ + 0.147829, + -0.628189, + -5.2e-05 + ], + [ + -1.7e-05, + -5.2e-05, + -1.6e-05 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.9719177248412, + "osc_stre": 0.01212432500695806, + "rot_stre": 1.803709060411251e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 92.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.098915, + -0.420038, + -3e-06 + ], + "magnetic_dipole": [ + -0.0, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 1.117786, + "moment": [ + [ + -0.14786, + 0.628187, + -4.2e-05 + ], + [ + 0.628187, + 0.147859, + 8e-06 + ], + [ + -4.2e-05, + 8e-06, + 5e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.883228397969, + "osc_stre": 1.432831275341385e-12, + "rot_stre": -4.774971882692591e-13, + "dominant_contributions": [ + { + "occ_orb": { + "index": 16, + "irrep": "a", + "energy": -8.17, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 99.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -3e-06, + -1e-06, + -1e-06 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.5000000000000002e-05, + "anisotropy": 5.9e-05, + "moment": [ + [ + -0.0, + -5e-06, + -1.3e-05 + ], + [ + -5e-06, + -6e-06, + 3.1e-05 + ], + [ + -1.3e-05, + 3.1e-05, + -1e-05 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.8785348391943, + "osc_stre": 0.0001027026101658901, + "rot_stre": 6.779938106634969e-09, + "dominant_contributions": [ + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -9.08, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 46.2 + }, + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 39.9 + }, + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 12.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.008308, + -0.027154, + -0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.0, + -0.0 + ], + "electric_quadrupole": { + "trace": 6e-06, + "anisotropy": 0.027907, + "moment": [ + [ + 0.004742, + 0.0154, + 2.2e-05 + ], + [ + 0.0154, + -0.004736, + 7e-06 + ], + [ + 2.2e-05, + 7e-06, + 1e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.8785300080916, + "osc_stre": 0.0001032848671235739, + "rot_stre": 5.425456433189068e-09, + "dominant_contributions": [ + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -9.08, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 46.2 + }, + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 39.9 + }, + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 12.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.027245, + 0.008285, + -0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 1.2e-05, + "anisotropy": 0.028127, + "moment": [ + [ + 0.01555, + -0.004701, + -6e-06 + ], + [ + -0.004701, + -0.015538, + 1.8e-05 + ], + [ + -6e-06, + 1.8e-05, + 1e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.8470719905897, + "osc_stre": 1.201117362086292e-10, + "rot_stre": 6.172453712726647e-08, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 93.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -2.8e-05, + 7e-06, + 0.0 + ], + "magnetic_dipole": [ + -0.002194, + 0.000184, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.0, + "anisotropy": 0.393491, + "moment": [ + [ + -4.5e-05, + -4e-06, + -0.018976 + ], + [ + -4e-06, + 4.5e-05, + -0.226388 + ], + [ + -0.018976, + -0.226388, + -1e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.8470565182872, + "osc_stre": 1.653587585761768e-10, + "rot_stre": 6.773590398298486e-08, + "dominant_contributions": [ + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 93.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -2e-06, + -3.1e-05, + -1.3e-05 + ], + "magnetic_dipole": [ + -0.000184, + -0.002194, + -0.0 + ], + "electric_quadrupole": { + "trace": -3e-06, + "anisotropy": 0.39352, + "moment": [ + [ + -1e-06, + 6.1e-05, + 0.226404 + ], + [ + 6.1e-05, + -0.0, + -0.018993 + ], + [ + 0.226404, + -0.018993, + -1e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.811630271145, + "osc_stre": 1.847569671416052e-09, + "rot_stre": 3.638879465011652e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -10.06, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 57.7 + }, + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -10.06, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 35.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 9e-05, + -5e-05, + -9e-06 + ], + "magnetic_dipole": [ + 0.003244, + -0.001418, + -0.0 + ], + "electric_quadrupole": { + "trace": -3e-06, + "anisotropy": 0.721024, + "moment": [ + [ + 0.000313, + 0.00016, + 0.166717 + ], + [ + 0.00016, + -0.000315, + 0.381441 + ], + [ + 0.166717, + 0.381441, + -2e-06 + ] + ] + } + } + ] + } + ] + } + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + 0.0, + 0.0, + 0.0 + ], + "center_of_charge": [ + 0.0, + 0.0, + 0.0 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 2, + "sites": [ + { + "name": "O", + "species": [ + { + "element": "O", + "occu": 1 + } + ], + "xyz": [ + -0.6090991837390951, + -1.0549907333237556, + 0.0 + ], + "properties": {} + }, + { + "name": "N", + "species": [ + { + "element": "N", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + 0.0 + ], + "properties": {} + }, + { + "name": "O", + "species": [ + { + "element": "O", + "occu": 1 + } + ], + "xyz": [ + -0.6090991837390951, + 1.0549907333237556, + 0.0 + ], + "properties": {} + }, + { + "name": "O", + "species": [ + { + "element": "O", + "occu": 1 + } + ], + "xyz": [ + 1.2181983621864179, + 0.0, + 0.0 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "o": "def-SV(P)", + "n": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 56, + "number_scf_aux_basis_func": 148 + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:02.284000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:05.973000" + }, + "cpu_time": 2.11, + "wall_time": 3.74 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "escf" + }, + "cosmo": { + "@module": "turbomoleio.output.data", + "@class": "CosmoData", + "@version": "1.3.0", + "info": { + "area": 267.911883, + "volume": 374.012013 + }, + "parameters": null, + "screening_charge": null, + "energies": null, + "element_radius": null + }, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 3.3e-13, + "thize": 1e-05, + "thime": 5 + }, + "symmetry": { + "@module": "turbomoleio.output.data", + "@class": "SymmetryData", + "@version": "1.3.0", + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + } +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_parser.json new file mode 100644 index 0000000..1e17da7 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_parser.json @@ -0,0 +1,860 @@ +{ + "all_done": true, + "header": { + "executable": "escf", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:02.284000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + 0.0 + ], + "center_of_charge": [ + 0.0, + 0.0, + 0.0 + ] + }, + "coordinates": { + "coords": [ + [ + -1.15103064, + -1.99364355, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -1.15103064, + 1.99364355, + 0.0 + ], + [ + 2.30206127, + 0.0, + 0.0 + ] + ], + "species": [ + "o", + "n", + "o", + "o" + ], + "charges": [ + 8.0, + 7.0, + 8.0, + 8.0 + ], + "isotopes": [ + 0, + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "o": "def-SV(P)", + "n": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 56, + "number_scf_aux_basis_func": 148 + }, + "symmetry": { + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + }, + "cosmo_header": { + "area": 267.911883, + "volume": 374.012013 + }, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": { + "marij": false, + "rij_memory": 3, + "rik": false, + "ricore": 500 + }, + "dftd": null, + "pre_scf_run": null, + "scf_iterations": null, + "scf_energies": null, + "cosmo_results": null, + "electrostatic_moments": null, + "timings": { + "cpu_time": 2.11, + "wall_time": 3.74, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:05.973000" + } + }, + "s2": null, + "is_uhf": true, + "fermi": null, + "integral": { + "integral_neglect_threshold": 3.3e-13, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": { + "calc_type": "RPA UHF-EXCITATION", + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 16, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 8747, + "max_treated_vectors": 18, + "irrep_data": { + "a": { + "tensor_space_dim": 1255, + "n_roots": 10 + } + } + }, + "escf_iterations": { + "steps": [ + [ + [ + "a", + 0, + 0.07883659515532002 + ] + ], + [ + [ + "a", + 0, + 0.02178615279982761 + ] + ], + [ + [ + "a", + 0, + 0.003048709095992678 + ] + ], + [ + [ + "a", + 1, + 0.0005923431214770775 + ] + ], + [ + [ + "a", + 5, + 0.0001460143461808554 + ] + ], + [ + [ + "a", + 9, + 2.59024460222327e-05 + ] + ], + [ + [ + "a", + 10, + 9.666026785391291e-06 + ] + ] + ], + "converged": true + }, + "escf_gs_total_en": -280.0695809101, + "escf_excitations": { + "a": [ + { + "tot_en": -280.0032131563601, + "osc_stre": 3.719565467446828e-10, + "rot_stre": -2.148551926178635e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 98.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 8.9e-05, + -2e-05, + -3e-06 + ], + "magnetic_dipole": [ + -0.002347, + 0.000244, + 0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 0.366824, + "moment": [ + [ + 0.000104, + 1.6e-05, + 0.021883 + ], + [ + 1.6e-05, + -9.6e-05, + 0.210652 + ], + [ + 0.021883, + 0.210652, + -5e-06 + ] + ] + } + } + ] + }, + { + "tot_en": -280.0032035309166, + "osc_stre": 4.24192935463934e-10, + "rot_stre": -2.239185648833963e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 98.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -3e-06, + -9.5e-05, + -2.3e-05 + ], + "magnetic_dipole": [ + 0.000244, + 0.002346, + -0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 0.366808, + "moment": [ + [ + 3e-06, + 0.000121, + 0.210642 + ], + [ + 0.000121, + 4e-06, + -0.021891 + ], + [ + 0.210642, + -0.021891, + -4e-06 + ] + ] + } + } + ] + }, + { + "tot_en": -279.971923215418, + "osc_stre": 0.01213515055616938, + "rot_stre": 1.691598833380001e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 92.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.420261, + -0.098865, + -3e-06 + ], + "magnetic_dipole": [ + 0.0, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 2.1e-05, + "anisotropy": 1.117809, + "moment": [ + [ + 0.628228, + 0.147829, + -1.7e-05 + ], + [ + 0.147829, + -0.628189, + -5.2e-05 + ], + [ + -1.7e-05, + -5.2e-05, + -1.6e-05 + ] + ] + } + } + ] + }, + { + "tot_en": -279.9719177248412, + "osc_stre": 0.01212432500695806, + "rot_stre": 1.803709060411251e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 92.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.098915, + -0.420038, + -3e-06 + ], + "magnetic_dipole": [ + -0.0, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 1.117786, + "moment": [ + [ + -0.14786, + 0.628187, + -4.2e-05 + ], + [ + 0.628187, + 0.147859, + 8e-06 + ], + [ + -4.2e-05, + 8e-06, + 5e-06 + ] + ] + } + } + ] + }, + { + "tot_en": -279.883228397969, + "osc_stre": 1.432831275341385e-12, + "rot_stre": -4.774971882692591e-13, + "dominant_contributions": [ + { + "occ_orb": { + "index": 16, + "irrep": "a", + "energy": -8.17, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 99.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -3e-06, + -1e-06, + -1e-06 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.5000000000000002e-05, + "anisotropy": 5.9e-05, + "moment": [ + [ + -0.0, + -5e-06, + -1.3e-05 + ], + [ + -5e-06, + -6e-06, + 3.1e-05 + ], + [ + -1.3e-05, + 3.1e-05, + -1e-05 + ] + ] + } + } + ] + }, + { + "tot_en": -279.8785348391943, + "osc_stre": 0.0001027026101658901, + "rot_stre": 6.779938106634969e-09, + "dominant_contributions": [ + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -9.08, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 46.2 + }, + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 39.9 + }, + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 12.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.008308, + -0.027154, + -0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.0, + -0.0 + ], + "electric_quadrupole": { + "trace": 6e-06, + "anisotropy": 0.027907, + "moment": [ + [ + 0.004742, + 0.0154, + 2.2e-05 + ], + [ + 0.0154, + -0.004736, + 7e-06 + ], + [ + 2.2e-05, + 7e-06, + 1e-06 + ] + ] + } + } + ] + }, + { + "tot_en": -279.8785300080916, + "osc_stre": 0.0001032848671235739, + "rot_stre": 5.425456433189068e-09, + "dominant_contributions": [ + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -9.08, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 46.2 + }, + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 39.9 + }, + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 12.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.027245, + 0.008285, + -0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 1.2e-05, + "anisotropy": 0.028127, + "moment": [ + [ + 0.01555, + -0.004701, + -6e-06 + ], + [ + -0.004701, + -0.015538, + 1.8e-05 + ], + [ + -6e-06, + 1.8e-05, + 1e-06 + ] + ] + } + } + ] + }, + { + "tot_en": -279.8470719905897, + "osc_stre": 1.201117362086292e-10, + "rot_stre": 6.172453712726647e-08, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 93.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -2.8e-05, + 7e-06, + 0.0 + ], + "magnetic_dipole": [ + -0.002194, + 0.000184, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.0, + "anisotropy": 0.393491, + "moment": [ + [ + -4.5e-05, + -4e-06, + -0.018976 + ], + [ + -4e-06, + 4.5e-05, + -0.226388 + ], + [ + -0.018976, + -0.226388, + -1e-06 + ] + ] + } + } + ] + }, + { + "tot_en": -279.8470565182872, + "osc_stre": 1.653587585761768e-10, + "rot_stre": 6.773590398298486e-08, + "dominant_contributions": [ + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 93.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -2e-06, + -3.1e-05, + -1.3e-05 + ], + "magnetic_dipole": [ + -0.000184, + -0.002194, + -0.0 + ], + "electric_quadrupole": { + "trace": -3e-06, + "anisotropy": 0.39352, + "moment": [ + [ + -1e-06, + 6.1e-05, + 0.226404 + ], + [ + 6.1e-05, + -0.0, + -0.018993 + ], + [ + 0.226404, + -0.018993, + -1e-06 + ] + ] + } + } + ] + }, + { + "tot_en": -279.811630271145, + "osc_stre": 1.847569671416052e-09, + "rot_stre": 3.638879465011652e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -10.06, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 57.7 + }, + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -10.06, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 35.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 9e-05, + -5e-05, + -9e-06 + ], + "magnetic_dipole": [ + 0.003244, + -0.001418, + -0.0 + ], + "electric_quadrupole": { + "trace": -3e-06, + "anisotropy": 0.721024, + "moment": [ + [ + 0.000313, + 0.00016, + 0.166717 + ], + [ + 0.00016, + -0.000315, + 0.381441 + ], + [ + 0.166717, + 0.381441, + -2e-06 + ] + ] + } + } + ] + } + ] + }, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/grad.log b/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/grad.log new file mode 100644 index 0000000..c4b42b8 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/grad.log @@ -0,0 +1,237 @@ + + grad (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:19:26.512 + + + + g r a d - program + + reinhart ahlrichs, hans horn & ansgar schaefer + density functional version : oliver treutler + + + quantum chemistry group + universitaet karlsruhe + germany + + + + + + References: + + Density Functional: + O. Treutler and R. Ahlrichs + Efficient Molecular Numerical Integration Schemes + J. Chem. Phys. 102: 346 (1995) + Parallel Version: + Performance of parallel TURBOMOLE for Density + Functional Calculations + M. v. Arnim and R. Ahlrichs + J. Comp. Chem. 19: 1746 (1998) + + + + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 -0.72557892 o 8.000 0 + 1.41713421 0.00000000 0.36278946 h 1.000 0 + -1.41713421 0.00000000 0.36278946 h 1.000 0 + + center of nuclear mass : 0.00000000 0.00000000 -0.60378908 + center of nuclear charge: 0.00000000 0.00000000 -0.50790524 + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 2 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 3 32 18 + --------------------------------------------------------------------------- + + total number of primitive shells : 16 + total number of contracted shells : 10 + total number of cartesian basis functions : 19 + total number of SCF-basis functions : 18 + + + ************************************************************************* + dscf + ************************************************************************* + + + + integral neglect threshold : 0.18E-09 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + WARNING : cannot change filename for statistics + + symmetry group of the molecule : c2v + + the group has the following generators : + c2(z) + mirror plane sigma(xz) + + 4 symmetry operations found + + there are 4 real representations : a1 a2 b1 b2 + + maximum number of shells which are related by symmetry : 2 + + + mo occupation : + irrep mo's occupied + a1 9 3 + a2 1 0 + b1 5 1 + b2 3 1 + + number of basis functions : 18 + number of occupied orbitals : 5 + + + number of off-diagonal lagrangians expected : 0 + MOs are in ASCII format ! + + + reading orbital data $scfmo from file mos + orbital characterization : scfconv=7 + time elapsed for calculating density matrices : 0.000 sec + + grad preliminaries : cpu elapsed 0.030 s + wall 0.188 s + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 2 + partition function : becke + partition sharpness : 3 + + + : input of entry tasksize + from data group '$pardft' failed ! + + Default values taken + + : input of entry memdiv + from data group '$pardft' failed ! + + Default values taken + + + + and now featuring + the super-duper gradient ..... wow ..... + + + ------------------------------------------------------------------------------ + + SCF ENERGY GRADIENT with respect to NUCLEAR COORDINATES + + ------------------------------------------------------------------------------ + + + + ---------------------------------------- + S+T+V CONTRIBUTIONS TO ENERGY GRADIENT + ---------------------------------------- + + 1e-integral 1st. derivatives will be neglected if expon. factor < 0.100000E-10 + + cpu time for 1e-part of gradient : 0.00 sec + + + ----------------------------------------------- + TWO ELECTRON CONTRIBUTIONS TO ENERGY GRADIENT + ----------------------------------------------- + + biggest 1-particle AO density matrix element is expected to be 2.1355116296 + + setting up bound for integral derivative estimation + + increment for numerical differentiation : 0.00050000 + + biggest AO integral is expected to be 4.776656448 + biggest cartesian 1st derivative AO integral is expected to be 8.648821438 + + 2e-integral 1st. derivatives will be neglected if expon. factor < 0.100000E-06 + outer boundary for 2e-integral derivative neglection is 0.182732E-08 + + cpu time for 2e-part of gradient : 0.00 min + + Overall gridpoints after grid construction = 3891 + + Integrated ground state density : 9.999998377624109 + + + ------------------------------------------------ + cartesian gradient of the energy (hartree/bohr) + ------------------------------------------------ + + ATOM 1 o 2 h 3 h +dE/dx 0.0000000D+00 -0.2701367D-01 0.2701367D-01 +dE/dy 0.0000000D+00 0.0000000D+00 0.0000000D+00 +dE/dz 0.4134789D-01 -0.2065737D-01 -0.2065737D-01 + + resulting FORCE (fx,fy,fz) = (-.173D-16,0.000D+00,0.332D-04) + resulting MOMENT (mx,my,mz) = (0.000D+00,-.694D-17,0.000D+00) + + + exx = -0.076564 eyy = 0.000000 ezz = -0.044990 + eyz = 0.000000 exz = -0.000000 exy = 0.000000 + + + ********************************************************************** + |maximum component of gradient| : 0.41347887E-01 (atom 1 o ) + gradient norm : 0.63423797E-01 + ********************************************************************** + + : data group $grad is missing + + *** cartesian gradients written onto *** + + + --- calculation of the energy gradient finished --- + + + + ------------------------------------------------------------------------ + total cpu-time : 0.06 seconds + total wall-time : 0.28 seconds + ------------------------------------------------------------------------ + + **** grad : all done **** + + + 2023-01-25 00:19:26.721 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/ref_output.json new file mode 100644 index 0000000..e5ad3b4 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/ref_output.json @@ -0,0 +1,66 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "GradOutput", + "@version": "1.3.0", + "gradients": [ + [ + 0.0, + 0.0, + 0.04134789 + ], + [ + -0.02701367, + 0.0, + -0.02065737 + ], + [ + 0.02701367, + 0.0, + -0.02065737 + ] + ], + "dielectric": [ + [ + -0.076564, + 0.0, + -0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.0, + 0.0, + -0.04499 + ] + ], + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:26.512000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:26.721000" + }, + "cpu_time": 0.06, + "wall_time": 0.28 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "grad" + }, + "memory": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/ref_parser.json new file mode 100644 index 0000000..46d588d --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/ref_parser.json @@ -0,0 +1,165 @@ +{ + "all_done": true, + "header": { + "executable": "grad", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:26.512000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790524 + ] + }, + "coordinates": { + "coords": [ + [ + 0.0, + 0.0, + -0.72557892 + ], + [ + 1.41713421, + 0.0, + 0.36278946 + ], + [ + -1.41713421, + 0.0, + 0.36278946 + ] + ], + "species": [ + "o", + "h", + "h" + ], + "charges": [ + 8.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": null + }, + "symmetry": { + "symbol": "c2v", + "n_reps": 4, + "reps": [ + "a1", + "a2", + "b1", + "b2" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": null, + "pre_scf_run": null, + "scf_iterations": null, + "scf_energies": null, + "cosmo_results": null, + "electrostatic_moments": null, + "timings": { + "cpu_time": 0.06, + "wall_time": 0.28, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:26.721000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 1.8e-10, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": null, + "escf_iterations": null, + "escf_gs_total_en": null, + "escf_excitations": null, + "rdgrad_memory": null, + "gradient": { + "gradients": [ + [ + 0.0, + 0.0, + 0.04134789 + ], + [ + -0.02701367, + 0.0, + -0.02065737 + ], + [ + 0.02701367, + 0.0, + -0.02065737 + ] + ], + "dielectric": [ + [ + -0.076564, + 0.0, + -0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.0, + 0.0, + -0.04499 + ] + ] + }, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/jobex/h2o_dscf/job.last b/turbomoleio/testfiles/outputs/TM_v7.6/jobex/h2o_dscf/job.last new file mode 100644 index 0000000..0835cea --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/jobex/h2o_dscf/job.last @@ -0,0 +1,661 @@ + +OPTIMIZATION CYCLE 6 +mer 25 gen 2023, 00.20.45, CET + + WARNING : length of argument string +/projects/matgenix/COMMON/software/TURBOMOLE/evaluation_license/TURBOMOLE_76/bin/em64t-unknown-linux-gnu + exceeds 80 characters + argument will be ignored! + + + grad (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:20:45.925 + + + + g r a d - program + + reinhart ahlrichs, hans horn & ansgar schaefer + density functional version : oliver treutler + + + quantum chemistry group + universitaet karlsruhe + germany + + + + + + References: + + Density Functional: + O. Treutler and R. Ahlrichs + Efficient Molecular Numerical Integration Schemes + J. Chem. Phys. 102: 346 (1995) + Parallel Version: + Performance of parallel TURBOMOLE for Density + Functional Calculations + M. v. Arnim and R. Ahlrichs + J. Comp. Chem. 19: 1746 (1998) + + + + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 -0.76469392 o 8.000 0 + 1.45675797 0.00000000 0.38234696 h 1.000 0 + -1.45675797 0.00000000 0.38234696 h 1.000 0 + + center of nuclear mass : 0.00000000 0.00000000 -0.63633856 + center of nuclear charge: 0.00000000 0.00000000 -0.53528575 + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 2 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 3 32 18 + --------------------------------------------------------------------------- + + total number of primitive shells : 16 + total number of contracted shells : 10 + total number of cartesian basis functions : 19 + total number of SCF-basis functions : 18 + + + ************************************************************************* + dscf + ************************************************************************* + + + + integral neglect threshold : 0.18E-09 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + WARNING : cannot change filename for statistics + + symmetry group of the molecule : c2v + + the group has the following generators : + c2(z) + mirror plane sigma(xz) + + 4 symmetry operations found + + there are 4 real representations : a1 a2 b1 b2 + + maximum number of shells which are related by symmetry : 2 + + + mo occupation : + irrep mo's occupied + a1 9 3 + a2 1 0 + b1 5 1 + b2 3 1 + + number of basis functions : 18 + number of occupied orbitals : 5 + + + number of off-diagonal lagrangians expected : 0 + MOs are in ASCII format ! + + + reading orbital data $scfmo from file mos + orbital characterization : scfconv=7 + time elapsed for calculating density matrices : 0.000 sec + + grad preliminaries : cpu elapsed 0.034 s + wall 0.146 s + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 2 + partition function : becke + partition sharpness : 3 + + + : input of entry tasksize + from data group '$pardft' failed ! + + Default values taken + + : input of entry memdiv + from data group '$pardft' failed ! + + Default values taken + + + + and now featuring + the super-duper gradient ..... wow ..... + + + ------------------------------------------------------------------------------ + + SCF ENERGY GRADIENT with respect to NUCLEAR COORDINATES + + ------------------------------------------------------------------------------ + + + + ---------------------------------------- + S+T+V CONTRIBUTIONS TO ENERGY GRADIENT + ---------------------------------------- + + 1e-integral 1st. derivatives will be neglected if expon. factor < 0.100000E-10 + + cpu time for 1e-part of gradient : 0.00 sec + + + ----------------------------------------------- + TWO ELECTRON CONTRIBUTIONS TO ENERGY GRADIENT + ----------------------------------------------- + + biggest 1-particle AO density matrix element is expected to be 2.1367374605 + + setting up bound for integral derivative estimation + + increment for numerical differentiation : 0.00050000 + + biggest AO integral is expected to be 4.776656448 + biggest cartesian 1st derivative AO integral is expected to be 8.648821438 + + 2e-integral 1st. derivatives will be neglected if expon. factor < 0.100000E-06 + outer boundary for 2e-integral derivative neglection is 0.182523E-08 + + cpu time for 2e-part of gradient : 0.00 min + + Overall gridpoints after grid construction = 3892 + + Integrated ground state density : 9.999997541321479 + + + ------------------------------------------------ + cartesian gradient of the energy (hartree/bohr) + ------------------------------------------------ + + ATOM 1 o 2 h 3 h +dE/dx 0.0000000D+00 0.4202808D-04 -0.4202808D-04 +dE/dy 0.0000000D+00 0.0000000D+00 0.0000000D+00 +dE/dz -0.5391513D-04 0.3937219D-04 0.3937219D-04 + + resulting FORCE (fx,fy,fz) = (-.139D-16,0.000D+00,0.248D-04) + resulting MOMENT (mx,my,mz) = (0.000D+00,-.530D-17,0.000D+00) + + + exx = 0.000122 eyy = 0.000000 ezz = 0.000071 + eyz = 0.000000 exz = -0.000000 exy = 0.000000 + + + ********************************************************************** + |maximum component of gradient| : 0.53915131E-04 (atom 1 o ) + gradient norm : 0.97672409E-04 + ********************************************************************** + *** cartesian gradients written onto
from turbomoleio.output.states import EigerRunner, States TESTDIR = os.path.split(__file__)[0] -TM_VERSIONS = ["TM_v7.3", "TM_v7.3.1", "TM_v7.4.1", "TM_v7.5.1"] +TM_VERSIONS = ["TM_v7.3", "TM_v7.3.1", "TM_v7.4.1", "TM_v7.5.1", "TM_v7.6"] TESTS_CONFIGS_TM_VERSIONS = { tmv: loadfn(os.path.join(TESTDIR, "outputs", tmv, "tests_config.yaml")) for tmv in TM_VERSIONS diff --git a/docs/_sources/index.rst.txt b/docs/_sources/index.rst.txt index 85a6ef5..714e8d9 100644 --- a/docs/_sources/index.rst.txt +++ b/docs/_sources/index.rst.txt @@ -27,14 +27,15 @@ turbomoleio turbomoleio is a python library containing a set of tools for the generation of inputs and parsing of outputs for `TURBOMOLE `_, based on the open-source `pymatgen `_ library. turbomoleio is compatible with python version 3.8 and higher. The current version of turbomoleio is -compatible with TURBOMOLE version 7.5. Care is taken to provide backward compatibility for parsing of output +compatible with TURBOMOLE version 7.6. Care is taken to provide backward compatibility for parsing of output files generated with versions of TURBOMOLE down to 7.3. Full compatibility (i.e. input generation using define) -is only tested for TURBOMOLE version 7.5. The following table summarizes the compatibility (full, including input +is only tested for TURBOMOLE version 7.6. The following table summarizes the compatibility (full, including input generation using define) between TURBOMOLE and turbomoleio versions: ======================= ======================= TURBOMOLE version(s) turbomoleio version(s) ======================= ======================= +7.6 series 1.4.x series 7.5 series 1.3.x series 7.4 series 1.2.x series 7.3 series 1.0.x and 1.1.x series diff --git a/docs/_static/documentation_options.js b/docs/_static/documentation_options.js index db0704b..849f66f 100644 --- a/docs/_static/documentation_options.js +++ b/docs/_static/documentation_options.js @@ -1,6 +1,6 @@ var DOCUMENTATION_OPTIONS = { URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '1.3.1', + VERSION: '1.4.0', LANGUAGE: 'en', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/docs/api/modules.html b/docs/api/modules.html index b3b52dc..70c6fbd 100644 --- a/docs/api/modules.html +++ b/docs/api/modules.html @@ -4,7 +4,7 @@ - turbomoleio — turbomoleio 1.3.1 documentation + turbomoleio — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.core.html b/docs/api/turbomoleio.core.html index 69c565e..bdd5d7d 100644 --- a/docs/api/turbomoleio.core.html +++ b/docs/api/turbomoleio.core.html @@ -4,7 +4,7 @@ - turbomoleio.core package — turbomoleio 1.3.1 documentation + turbomoleio.core package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.core.tests.html b/docs/api/turbomoleio.core.tests.html index b0d64c2..53818e9 100644 --- a/docs/api/turbomoleio.core.tests.html +++ b/docs/api/turbomoleio.core.tests.html @@ -4,7 +4,7 @@ - turbomoleio.core.tests package — turbomoleio 1.3.1 documentation + turbomoleio.core.tests package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.html b/docs/api/turbomoleio.html index f0071f0..e393193 100644 --- a/docs/api/turbomoleio.html +++ b/docs/api/turbomoleio.html @@ -4,7 +4,7 @@ - turbomoleio package — turbomoleio 1.3.1 documentation + turbomoleio package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.input.html b/docs/api/turbomoleio.input.html index 0d28cbe..7c5a743 100644 --- a/docs/api/turbomoleio.input.html +++ b/docs/api/turbomoleio.input.html @@ -4,7 +4,7 @@ - turbomoleio.input package — turbomoleio 1.3.1 documentation + turbomoleio.input package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.input.templates.html b/docs/api/turbomoleio.input.templates.html index 4a50324..2ecbacb 100644 --- a/docs/api/turbomoleio.input.templates.html +++ b/docs/api/turbomoleio.input.templates.html @@ -4,7 +4,7 @@ - turbomoleio.input.templates package — turbomoleio 1.3.1 documentation + turbomoleio.input.templates package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.input.tests.html b/docs/api/turbomoleio.input.tests.html index d2758f6..e40db7b 100644 --- a/docs/api/turbomoleio.input.tests.html +++ b/docs/api/turbomoleio.input.tests.html @@ -4,7 +4,7 @@ - turbomoleio.input.tests package — turbomoleio 1.3.1 documentation + turbomoleio.input.tests package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.output.html b/docs/api/turbomoleio.output.html index d2e110b..a34981b 100644 --- a/docs/api/turbomoleio.output.html +++ b/docs/api/turbomoleio.output.html @@ -4,7 +4,7 @@ - turbomoleio.output package — turbomoleio 1.3.1 documentation + turbomoleio.output package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.output.tests.html b/docs/api/turbomoleio.output.tests.html index 22b1520..5fc4520 100644 --- a/docs/api/turbomoleio.output.tests.html +++ b/docs/api/turbomoleio.output.tests.html @@ -4,7 +4,7 @@ - turbomoleio.output.tests package — turbomoleio 1.3.1 documentation + turbomoleio.output.tests package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/api/turbomoleio.testfiles.html b/docs/api/turbomoleio.testfiles.html index 793db22..efe0993 100644 --- a/docs/api/turbomoleio.testfiles.html +++ b/docs/api/turbomoleio.testfiles.html @@ -4,7 +4,7 @@ - turbomoleio.testfiles package — turbomoleio 1.3.1 documentation + turbomoleio.testfiles package — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/appendix.html b/docs/appendix.html index b88699c..fa864ba 100644 --- a/docs/appendix.html +++ b/docs/appendix.html @@ -4,7 +4,7 @@ - Appendix — turbomoleio 1.3.1 documentation + Appendix — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/bugs.html b/docs/bugs.html index 1f737e8..f7411ad 100644 --- a/docs/bugs.html +++ b/docs/bugs.html @@ -4,7 +4,7 @@ - Reporting bugs — turbomoleio 1.3.1 documentation + Reporting bugs — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -36,7 +36,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/changelog.html b/docs/changelog.html index 4e519ef..62451d0 100644 --- a/docs/changelog.html +++ b/docs/changelog.html @@ -4,7 +4,7 @@ - Changelog — turbomoleio 1.3.1 documentation + Changelog — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/coord.html b/docs/coord.html index 54efbe0..69150fa 100644 --- a/docs/coord.html +++ b/docs/coord.html @@ -4,7 +4,7 @@ - The coord file — turbomoleio 1.3.1 documentation + The coord file — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/datagroups.html b/docs/datagroups.html index 31101ec..4427927 100644 --- a/docs/datagroups.html +++ b/docs/datagroups.html @@ -4,7 +4,7 @@ - The data group files — turbomoleio 1.3.1 documentation + The data group files — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/definerunner.html b/docs/definerunner.html index 5bb5293..00e627a 100644 --- a/docs/definerunner.html +++ b/docs/definerunner.html @@ -4,7 +4,7 @@ - Running define — turbomoleio 1.3.1 documentation + Running define — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/developer/definerunner.html b/docs/developer/definerunner.html index 070602b..7baceda 100644 --- a/docs/developer/definerunner.html +++ b/docs/developer/definerunner.html @@ -4,7 +4,7 @@ - Define runner — turbomoleio 1.3.1 documentation + Define runner — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/developer/introduction.html b/docs/developer/introduction.html index 19b6ce9..16df5b7 100644 --- a/docs/developer/introduction.html +++ b/docs/developer/introduction.html @@ -4,7 +4,7 @@ - Contributing — turbomoleio 1.3.1 documentation + Contributing — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/developer/parsing_logs.html b/docs/developer/parsing_logs.html index 5ed5546..c46e1fb 100644 --- a/docs/developer/parsing_logs.html +++ b/docs/developer/parsing_logs.html @@ -4,7 +4,7 @@ - Output logs parsing — turbomoleio 1.3.1 documentation + Output logs parsing — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/developer/testing.html b/docs/developer/testing.html index 55e6aee..9f664f7 100644 --- a/docs/developer/testing.html +++ b/docs/developer/testing.html @@ -4,7 +4,7 @@ - Testing — turbomoleio 1.3.1 documentation + Testing — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/developer/versioning.html b/docs/developer/versioning.html index eb19195..dc4efd7 100644 --- a/docs/developer/versioning.html +++ b/docs/developer/versioning.html @@ -4,7 +4,7 @@ - Versioning — turbomoleio 1.3.1 documentation + Versioning — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/genindex.html b/docs/genindex.html index 60ce12f..17f64f3 100644 --- a/docs/genindex.html +++ b/docs/genindex.html @@ -3,7 +3,7 @@ - Index — turbomoleio 1.3.1 documentation + Index — turbomoleio 1.4.0 documentation @@ -14,7 +14,7 @@ - + @@ -34,7 +34,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/index.html b/docs/index.html index 4bbd44a..a1201c8 100644 --- a/docs/index.html +++ b/docs/index.html @@ -4,7 +4,7 @@ - turbomoleio — turbomoleio 1.3.1 documentation + turbomoleio — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -36,7 +36,7 @@ turbomoleio - 1.3.1 + 1.4.0 @@ -99,9 +99,9 @@ turbomoleioTURBOMOLE, based on the open-source pymatgen library. turbomoleio is compatible with python version 3.8 and higher. The current version of turbomoleio is -compatible with TURBOMOLE version 7.5. Care is taken to provide backward compatibility for parsing of output +compatible with TURBOMOLE version 7.6. Care is taken to provide backward compatibility for parsing of output files generated with versions of TURBOMOLE down to 7.3. Full compatibility (i.e. input generation using define) -is only tested for TURBOMOLE version 7.5. The following table summarizes the compatibility (full, including input +is only tested for TURBOMOLE version 7.6. The following table summarizes the compatibility (full, including input generation using define) between TURBOMOLE and turbomoleio versions: @@ -110,13 +110,16 @@ turbomoleio7.5 series +7.6 series +1.4.x series + +7.5 series 1.3.x series -7.4 series +7.4 series 1.2.x series -7.3 series +7.3 series 1.0.x and 1.1.x series diff --git a/docs/license.html b/docs/license.html index 0dfd04d..3cfe3ce 100644 --- a/docs/license.html +++ b/docs/license.html @@ -4,7 +4,7 @@ - License — turbomoleio 1.3.1 documentation + License — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/objects.inv b/docs/objects.inv index 6b32926..9ed23fb 100644 Binary files a/docs/objects.inv and b/docs/objects.inv differ diff --git a/docs/output_parsing.html b/docs/output_parsing.html index a9bb0e9..c2012b8 100644 --- a/docs/output_parsing.html +++ b/docs/output_parsing.html @@ -4,7 +4,7 @@ - Outputs parsing — turbomoleio 1.3.1 documentation + Outputs parsing — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/py-modindex.html b/docs/py-modindex.html index 807f27b..5111519 100644 --- a/docs/py-modindex.html +++ b/docs/py-modindex.html @@ -3,7 +3,7 @@ - Python Module Index — turbomoleio 1.3.1 documentation + Python Module Index — turbomoleio 1.4.0 documentation @@ -14,7 +14,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/search.html b/docs/search.html index 8fdec4c..ece90f3 100644 --- a/docs/search.html +++ b/docs/search.html @@ -3,7 +3,7 @@ - Search — turbomoleio 1.3.1 documentation + Search — turbomoleio 1.4.0 documentation @@ -15,7 +15,7 @@ - + @@ -37,7 +37,7 @@ turbomoleio - 1.3.1 + 1.4.0 diff --git a/docs/searchindex.js b/docs/searchindex.js index bcfba6d..deca981 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["api/modules", "api/turbomoleio", "api/turbomoleio.core", "api/turbomoleio.core.tests", "api/turbomoleio.input", "api/turbomoleio.input.templates", "api/turbomoleio.input.tests", "api/turbomoleio.output", "api/turbomoleio.output.tests", "api/turbomoleio.testfiles", "appendix", "bugs", "changelog", "coord", "datagroups", "definerunner", "developer/definerunner", "developer/introduction", "developer/parsing_logs", "developer/testing", "developer/versioning", "index", "license", "output_parsing"], "filenames": ["api/modules.rst", "api/turbomoleio.rst", "api/turbomoleio.core.rst", "api/turbomoleio.core.tests.rst", "api/turbomoleio.input.rst", "api/turbomoleio.input.templates.rst", "api/turbomoleio.input.tests.rst", "api/turbomoleio.output.rst", "api/turbomoleio.output.tests.rst", "api/turbomoleio.testfiles.rst", "appendix.rst", "bugs.rst", "changelog.rst", "coord.rst", "datagroups.rst", "definerunner.rst", "developer/definerunner.rst", "developer/introduction.rst", "developer/parsing_logs.rst", "developer/testing.rst", "developer/versioning.rst", "index.rst", "license.rst", "output_parsing.rst"], "titles": ["turbomoleio", "turbomoleio package", "turbomoleio.core package", "turbomoleio.core.tests package", "turbomoleio.input package", "turbomoleio.input.templates package", "turbomoleio.input.tests package", "turbomoleio.output package", "turbomoleio.output.tests package", "turbomoleio.testfiles package", "Appendix", "Reporting bugs", "Changelog", "The coord file", "The data group files", "Running define", "Define runner", "Contributing", "Output logs parsing", "Testing", "Versioning", "turbomoleio", "License", "Outputs parsing"], "terms": {"packag": [0, 10, 11, 12, 13, 15, 17, 18, 19, 20, 21, 22], "subpackag": 0, "core": [0, 1, 7, 13, 14, 16], "submodul": [0, 1], "base": [0, 1, 3, 4, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 21, 22, 23], "modul": [0, 12, 14, 15, 16, 19, 20, 21, 23], "control": [0, 1, 3, 4, 7, 9, 12, 15, 16, 19, 21, 22, 23], "datagroup": [0, 1, 3, 7, 9, 12, 20, 21, 23], "molecul": [0, 1, 3, 7, 13, 15, 19, 21, 23], "period": [0, 1, 7, 12, 21, 23], "symmetri": [0, 1, 7, 14, 15, 23], "util": [0, 1, 6, 7, 15, 16, 19], "content": [0, 14, 22, 23], "input": [0, 1, 2, 7, 12, 14, 15, 16, 18, 19, 20, 21, 23], "defin": [0, 1, 2, 3, 5, 6, 7, 9, 12, 13, 14, 17, 19, 20, 21, 22], "output": [0, 1, 2, 4, 9, 12, 13, 14, 15, 20, 21, 22], "data": [0, 1, 2, 3, 8, 12, 13, 15, 16, 18, 21, 22], "file": [0, 1, 2, 4, 8, 9, 11, 12, 15, 16, 17, 18, 19, 20, 21, 22], "parser": [0, 1, 8, 9, 18, 19, 21, 23], "state": [0, 1, 2, 4, 14, 15, 21, 22], "testfil": [0, 1, 7, 8, 12, 18, 19], "test": [1, 2, 4, 7, 9, 15, 17, 21], "test_control": [1, 2], "test_datagroup": [1, 2], "test_molecul": [1, 2], "test_period": [1, 2], "test_util": [1, 2, 4], "basesystem": [1, 2], "coord_lin": [1, 2], "to_coord_fil": [1, 2], "to_coord_str": [1, 2], "to_fil": [1, 2, 7, 14], "get_coord_lin": [1, 2], "get_mol_and_indices_frozen": [1, 2], "add_cosmo": [1, 2, 16], "cpc": [1, 2, 14], "energi": [1, 2, 7, 14, 15, 18, 21, 23], "from_fil": [1, 2, 7, 13, 14, 18, 23], "from_metr": [1, 2], "get_charg": [1, 2, 14], "get_shel": [1, 2, 7, 14], "get_subfiles_list": [1, 2], "gradient": [1, 2, 7, 12, 14, 23], "is_uhf": [1, 2, 7], "remove_last_energi": [1, 2], "remove_last_gradi": [1, 2], "set_disp": [1, 2, 14, 16], "default": [1, 2, 4, 7, 9, 14, 15, 18, 19], "metric": [1, 2, 4, 15], "delta_": [1, 2], "from_str": [1, 2, 7, 18], "n_step": [1, 2, 7], "plot": [1, 2, 7, 14, 23], "last_grad_max": [1, 2], "last_grad_norm": [1, 2], "max_gradi": [1, 2], "norm": [1, 2, 7], "shell": [1, 2, 7, 14, 15], "as_dict": [1, 2, 7, 23], "from_dict": [1, 2, 7, 23], "irrep": [1, 2, 7, 15], "to_datagroup": [1, 2], "total_electron": [1, 2, 7], "adg": [1, 2, 14], "cdg": [1, 2, 9, 14, 15], "kdg": [1, 2, 14], "mdgo": [1, 2, 14], "sdg": [1, 2, 14], "sdgo": [1, 2, 14], "add_data_group": [1, 2, 14], "change_data_group": [1, 2, 14, 16], "compar": [1, 2, 3, 7, 8, 9, 18, 19], "empti": [1, 2, 7, 14, 15, 23], "kill_data_group": [1, 2, 14], "modify_data_group_opt": [1, 2, 14], "ndg": [1, 2], "number_of_data_group": [1, 2], "show_data_group": [1, 2, 14], "show_data_group_opt": [1, 2, 14], "show_subfile_fnam": [1, 2], "cleanup_str": [1, 2], "compare_datagroup_str": [1, 2], "remove_com": [1, 2], "remove_dg_from_list": [1, 2], "split_string_to_dg_list": [1, 2], "bondangl": [1, 2], "compute_valu": [1, 2], "coord_str": [1, 2], "coord_typ": [1, 2], "n_atom": [1, 2], "collinearbendingangl": [1, 2], "dihedralangl": [1, 2], "distanc": [1, 2, 7, 13, 15], "internaldefinit": [1, 2, 13], "get_subclass_from_str": [1, 2], "is_valid": [1, 2], "to_str": [1, 2], "inversedist": [1, 2], "moleculesystem": [1, 2, 13, 21], "add_bond_angl": [1, 2, 13], "add_dihedr": [1, 2], "add_dist": [1, 2, 13], "get_int_def_inconsist": [1, 2], "has_inconsist": [1, 2], "outofplaneangl": [1, 2], "perpendicularbendingangl": [1, 2], "periodicsystem": [1, 2, 12, 13], "structur": [1, 2, 3, 7, 9, 12, 13, 14, 18, 19, 21], "define_quit": [1, 2], "get_tm_vers": [1, 2], "templat": [1, 4, 6, 12, 15], "test_defin": [1, 4], "defineerror": [1, 4, 15, 16], "defineexpecterror": [1, 4, 15], "defineirederror": [1, 4], "defineparametererror": [1, 4], "definerunn": [1, 4, 6, 9, 16, 19, 21], "dump_command_fil": [1, 4], "run_ful": [1, 4, 15, 16], "run_generate_mo_fil": [1, 4, 15, 16], "run_update_internal_coord": [1, 4, 15, 16], "unsupporteddefinestateerror": [1, 4], "parametersvalidationerror": [1, 4], "ex_sett": [1, 4], "get_define_templ": [1, 4, 15], "schema_define_param": [1, 4, 16], "validate_paramet": [1, 4, 15], "test_data": [1, 7], "test_fil": [1, 7, 18], "test_pars": [1, 7, 18], "test_stat": [1, 7], "aoforcenumericalintegrationdata": [1, 7, 23], "from_pars": [1, 7, 18, 23], "aoforcerotationaldata": [1, 7, 23], "aoforcevibrationaldata": [1, 7, 23], "get_freqs_df": [1, 7], "n_negative_freq": [1, 7], "n_positive_freq": [1, 7], "n_zero_freq": [1, 7], "basedata": [1, 7, 9, 18], "basisdata": [1, 7, 23], "cosmodata": [1, 7, 23], "dftdata": [1, 7, 23], "dispersioncorrectiondata": [1, 7, 23], "electrostaticmomentsdata": [1, 7, 23], "escfdata": [1, 7, 23], "escfiterationdata": [1, 7, 23], "functionaldata": [1, 7, 23], "geometrydata": [1, 7, 23], "integraldata": [1, 7, 23], "mp2data": [1, 7, 23], "mp2result": [1, 7, 23], "periodicitydata": [1, 7, 23], "relaxconvergencedata": [1, 7, 23], "relaxdata": [1, 7, 23], "relaxgradientsdata": [1, 7, 23], "ridata": [1, 7, 23], "rundata": [1, 7, 23], "scfdata": [1, 7, 23], "scfenergiesdata": [1, 7, 18, 23], "scfiterationdata": [1, 7, 23], "plot_energi": [1, 7, 23], "singleexcit": [1, 7], "smearingdata": [1, 7, 23], "spindata": [1, 7, 23], "statptdata": [1, 7, 23], "symmetrydata": [1, 7, 23], "turbomoledata": [1, 7, 23], "aoforceoutput": [1, 7, 23], "egradoutput": [1, 7, 23], "escfonlyoutput": [1, 7, 18, 23], "escfoutput": [1, 7, 23], "gradoutput": [1, 7, 23], "jobexoutput": [1, 7, 23], "mp2output": [1, 7, 23], "relaxoutput": [1, 7, 23], "ricc2output": [1, 7, 23], "scfoutput": [1, 7, 23], "statptoutput": [1, 7, 23], "all_don": [1, 7], "aoforce_analysi": [1, 7], "aoforce_numerical_integr": [1, 7], "basi": [1, 2, 4, 7, 15, 18, 23], "center": [1, 7, 23], "coordin": [1, 2, 4, 7, 12, 13, 15], "cosmo_head": [1, 7], "cosmo_result": [1, 7], "density_functional_data": [1, 7], "dftd": [1, 7], "egrad_excited_st": [1, 7], "electrostatic_mo": [1, 7], "escf_excit": [1, 7], "escf_gs_total_en": [1, 7], "escf_iter": [1, 7], "fermi": [1, 7], "get_split_jobex_pars": [1, 7], "get_valu": [1, 7], "grep_lin": [1, 7], "header": [1, 2, 7, 18], "integr": [1, 7, 9, 16, 17, 21, 23], "mp2_data": [1, 7], "mp2_result": [1, 7], "periodicity_data": [1, 7], "pre_escf_run": [1, 7], "pre_scf_run": [1, 7], "rdgrad_memori": [1, 7], "relax_conv_info": [1, 7], "relax_gradient_valu": [1, 7], "relax_info": [1, 7], "rij_info": [1, 7], "riper_scf_energi": [1, 7], "s2": [1, 7], "scf_energi": [1, 7], "scf_iter": [1, 7], "statpt_info": [1, 7], "string": [1, 2, 3, 4, 6, 7, 8, 9, 14, 15, 16, 18, 20, 23], "time": [1, 4, 7, 14, 15, 19, 22, 23], "convert_float": [1, 7], "convert_int": [1, 7], "convert_time_str": [1, 7], "eigeroutput": [1, 7], "compare_st": [1, 7], "eigerrunn": [1, 7], "get_eiger_output": [1, 7], "run": [1, 2, 4, 7, 9, 12, 14, 16, 18, 19, 21, 22], "has_fractional_occ": [1, 7], "max_occup": [1, 7], "eigenvalu": [1, 7, 19, 23], "filter_st": [1, 7], "gap": [1, 7, 23], "generate_lowest_filled_st": [1, 7], "has_hol": [1, 7, 23], "homo": [1, 7], "homo_index": [1, 7], "insert": [1, 7, 15], "irrep_indic": [1, 7], "lumo": [1, 7], "lumo_index": [1, 7], "n_state": [1, 7], "occup": [1, 2, 7, 23], "spin": [1, 7, 23], "get_mos_energi": [1, 7], "itestconfig": [1, 9], "define_timeout": [1, 9], "delete_tmp_dir": [1, 3, 6, 8, 9, 19], "dryrun": [1, 9, 19], "dryrun_fpath": [1, 9], "dryrun_use_ref_control": [1, 9], "generate_ref": [1, 9], "tol": [1, 2, 7, 9, 19], "itesterror": [1, 9], "assert_mson": [1, 9], "assert_almost_equ": [1, 9, 19], "compare_differ": [1, 9], "generate_control_for_test": [1, 9], "generate_reference_out_parser_fil": [1, 9], "generate_reference_output": [1, 9], "get_control_filepath": [1, 9], "get_control_integr": [1, 9], "get_sp": [1, 9], "get_tfp": [1, 9], "gisnan": [1, 9], "has_matplotlib": [1, 9], "run_itest": [1, 9, 19], "temp_dir": [1, 9, 19], "touch_fil": [1, 9], "i": [1, 2, 3, 4, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "act": [1, 14], "an": [1, 2, 4, 7, 9, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "interfac": [1, 4, 9, 12, 21, 22], "turbomol": [1, 2, 7, 9, 11, 12, 13, 14, 15, 16, 18, 20, 21, 23], "It": [1, 2, 3, 7, 14, 15, 17, 18, 19, 22], "allow": [1, 2, 4, 7, 8, 9, 13, 14, 15, 16, 18, 19, 22], "gener": [1, 2, 4, 7, 8, 9, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23], "pars": [1, 2, 7, 8, 12, 13, 14, 16, 20, 21], "easili": [1, 7, 15, 18, 19, 23], "thi": [1, 2, 4, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "root": [1, 7, 19, 23], "testcontrol": [2, 3], "test_add_cosmo": [2, 3, 4, 6], "test_cpc": [2, 3], "test_disp": [2, 3], "test_energi": [2, 3], "test_from_fil": [2, 3], "test_from_metr": [2, 3], "test_get_charg": [2, 3], "test_get_shel": [2, 3], "test_get_subfiles_list": [2, 3], "test_gradi": [2, 3], "test_is_uhf": [2, 3], "test_remove_energi": [2, 3], "test_remove_energy_in_control": [2, 3], "test_remove_gradi": [2, 3], "test_remove_gradient_in_control": [2, 3], "testdatagroupfunct": [2, 3], "pytestmark": [2, 3, 19], "test_adg": [2, 3], "test_cdg": [2, 3], "test_kdg": [2, 3], "test_mdgo": [2, 3], "test_sdg": [2, 3], "test_sdgo": [2, 3], "testenergi": [2, 3], "test_energy_mp2": [2, 3], "test_energy_scf": [2, 3], "testgradi": [2, 3], "test_empty_gradi": [2, 3], "test_fail_pars": [2, 3], "testshel": [2, 3], "test_clos": [2, 3, 4, 6, 7, 8], "test_fract": [2, 3], "test_uhf": [2, 3, 7, 8], "check_equivalent_dg": [2, 3], "test_cleanup": [2, 3], "test_compar": [2, 3], "test_compare_datagroup_str": [2, 3], "test_empti": [2, 3], "test_modify_data_group_opt": [2, 3], "test_remove_com": [2, 3], "test_remove_dg_from_list": [2, 3], "test_sdg_subfil": [2, 3], "test_show_data_group_opt": [2, 3], "test_show_subfile_fnam": [2, 3], "test_split_string_to_dg_list": [2, 3], "testinternaldefinit": [2, 3], "test_bond_angl": [2, 3], "test_collinear_bending_angl": [2, 3], "test_dihedral_angl": [2, 3], "test_dist": [2, 3], "test_from_str": [2, 3], "test_inverse_dist": [2, 3], "test_out_of_plane_angl": [2, 3], "test_perpendicular_bending_angl": [2, 3], "testmoleculesystem": [2, 3], "test_add_bond_angl": [2, 3], "test_add_dihedr": [2, 3], "test_add_dist": [2, 3], "test_check_index": [2, 3], "test_disord": [2, 3], "test_dummy_atom": [2, 3], "test_to_coord_str": [2, 3], "test_to_fil": [2, 3], "check_dg": [2, 3], "check_user_defined_bonds_dg": [2, 3], "testperiodicsystem": [2, 3], "test_periodic_2d": [2, 3], "test_periodic_3d": [2, 3], "test_periodic_wrong_rot": [2, 3], "test_read_periodic_2d": [2, 3], "testgetvers": [2, 3], "test_v72": [2, 3], "test_v731": [2, 3], "test_v741": [2, 3], "test_v751": [2, 3], "object": [2, 3, 4, 6, 7, 8, 9, 12, 13, 15, 16, 17, 18, 19, 21, 22], "repres": [2, 3, 7, 13, 15, 19, 22], "physic": [2, 7, 19, 22], "system": [2, 4, 7, 12, 14, 15, 19, 21, 22, 23], "class": [2, 3, 4, 6, 7, 8, 9, 18, 19, 22, 23], "molecule_or_structur": 2, "frozen_indic": [2, 13], "none": [2, 4, 6, 7, 8, 9, 14, 15, 18, 23], "0": [2, 4, 7, 9, 13, 19, 20, 21, 22, 23], "sourc": [2, 3, 4, 6, 7, 8, 9, 17, 19, 21, 22], "msonabl": [2, 7, 9, 21, 23], "common": [2, 7, 15, 18, 21, 22], "construct": [2, 4, 7, 8, 15], "paramet": [2, 3, 4, 6, 7, 8, 9, 16, 19, 21], "pymatgen": [2, 13, 21], "set": [2, 3, 4, 7, 9, 13, 14, 15, 16, 18, 19, 21, 23], "indic": [2, 7, 13, 22], "atom": [2, 7, 12, 13, 15], "should": [2, 3, 4, 6, 7, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "have": [2, 6, 13, 14, 15, 17, 18, 19, 21, 22, 23], "fix": [2, 16, 19, 20, 21, 22], "cartesian": [2, 7, 13], "1": [2, 7, 9, 13, 15, 19, 20, 21, 22, 23], "2": [2, 4, 7, 9, 13, 15, 19, 21, 22], "3": [2, 7, 13, 15, 17, 19, 20, 21, 22], "give": [2, 11, 19, 22], "line": [2, 3, 7, 13, 14, 15, 18, 19, 22], "coord": [2, 3, 4, 7, 9, 14, 15, 19, 21], "intern": [2, 4, 7, 13, 14, 15, 16, 23], "return": [2, 3, 4, 6, 7, 9, 14, 15, 16, 18, 19, 22, 23], "list": [2, 3, 4, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 22, 23], "type": [2, 3, 4, 7, 8, 9, 13, 14, 15, 16, 21, 22, 23], "filepath": [2, 4, 7], "write": [2, 7, 14, 18, 21, 22], "str": [2, 3, 4, 7, 9, 15], "path": [2, 4, 7, 9, 14, 15, 16, 19, 23], "abstract": [2, 7, 17, 18], "creat": [2, 4, 7, 9, 12, 15, 16, 18, 19, 20, 23], "implement": [2, 4, 9, 14, 15, 16, 17, 18, 19, 22, 23], "separ": [2, 6, 8, 14, 19, 22], "fmt": 2, "depend": [2, 4, 7, 15, 18, 19], "specifi": [2, 7, 9, 11, 14, 15, 22], "format": [2, 7, 13, 14, 17, 19, 21, 22], "The": [2, 3, 4, 7, 8, 9, 16, 17, 18, 20, 21, 22], "can": [2, 4, 7, 9, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "ani": [2, 7, 9, 14, 15, 16, 19, 22], "other": [2, 4, 6, 7, 8, 9, 13, 14, 15, 16, 17, 18, 19, 22, 23], "support": [2, 7, 9, 14, 15, 17, 18, 19, 20, 22], "could": [2, 7, 13, 16, 18, 19, 22, 23], "If": [2, 4, 7, 8, 9, 14, 15, 16, 18, 19, 22, 23], "code": [2, 4, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "would": [2, 7, 13, 15, 16, 17, 18, 19, 22, 23], "try": [2, 11, 14, 16], "infer": 2, "from": [2, 3, 4, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "name": [2, 3, 4, 7, 8, 9, 14, 15, 16, 18, 19, 22, 23], "contain": [2, 7, 9, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23], "convert": [2, 4, 7, 9, 14, 17, 18, 23], "frozen": [2, 7, 13], "f": [2, 7, 13, 22], "append": [2, 9, 13, 19], "end": [2, 4, 7, 9, 13, 14, 15, 18, 22], "cell_str": 2, "periodic_str": 2, "lattice_str": 2, "periodic_extens": 2, "5": [2, 12, 13, 15, 19, 20, 21, 22], "get": [2, 6, 7, 9, 14, 18, 19, 22], "cell": 2, "For": [2, 7, 11, 13, 14, 15, 16, 18, 19, 20, 22, 23], "1d": [2, 7], "consist": [2, 12, 22], "singl": [2, 7, 9, 14, 15, 18, 19, 20, 22, 23], "number": [2, 3, 7, 9, 14, 15, 20, 22], "lattic": [2, 7, 12], "2d": [2, 7], "b": [2, 4, 7, 14, 15, 22], "gamma": [2, 7], "angl": [2, 7], "between": [2, 7, 9, 14, 15, 19, 21, 22], "3d": [2, 7], "6": [2, 7, 15, 19, 22], "c": [2, 7, 14, 15, 22], "alpha": [2, 7, 14, 15], "beta": [2, 7, 14, 15], "onli": [2, 4, 7, 8, 9, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "both": [2, 9, 14, 18, 19, 22, 23], "describ": [2, 4, 7, 14, 16, 17, 18, 19, 23], "matrix": [2, 7, 15], "float": [2, 3, 4, 7, 9, 15, 18], "amount": [2, 19, 21], "angstrom": [2, 7, 13, 15], "artifici": 2, "ad": [2, 14, 15, 16, 18, 19, 21, 22], "vacuum": 2, "non": [2, 7, 22], "direct": [2, 7, 19, 22], "when": [2, 4, 7, 13, 14, 15, 16, 17, 18, 19, 20, 22], "ar": [2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "provid": [2, 4, 7, 8, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "namedtupl": [2, 7], "function": [2, 3, 4, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 20, 22, 23], "interact": [2, 14, 15, 22, 23], "directli": [2, 7, 14, 15, 16, 18, 19, 22, 23], "also": [2, 4, 7, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "relat": [2, 4, 12, 15, 23], "e": [2, 4, 7, 11, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "g": [2, 4, 7, 11, 14, 15, 18, 19, 20, 23], "etc": 2, "dg_list": [2, 14], "us": [2, 4, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "store": [2, 7, 8, 9, 12, 13, 14, 15, 18, 19, 20, 21, 23], "group": [2, 3, 13, 15, 16, 18, 19, 21, 23], "A": [2, 7, 8, 12, 14, 15, 17, 18, 19, 22], "kei": [2, 7, 9, 14, 15, 22], "valu": [2, 3, 4, 7, 8, 9, 13, 15, 16, 18, 19, 21, 23], "pair": 2, "specif": [2, 4, 6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "mai": [2, 6, 7, 12, 14, 18, 19, 22], "seri": [2, 14, 18, 19, 20, 21, 23], "combin": [2, 7, 15, 18, 22], "thereof": 2, "initi": [2, 7, 14, 19, 22, 23], "usual": [2, 7, 14, 15, 18, 23], "read": [2, 7, 13, 14, 19, 20, 21, 22, 23], "epsilon": [2, 4, 7, 15], "nppa": [2, 4, 7, 15], "nspa": [2, 4, 7, 15], "disex": [2, 4, 7, 15], "rsolv": [2, 4, 7, 15], "routf": [2, 4, 7, 15], "caviti": [2, 4, 7, 15], "use_old_amat": [2, 4, 15], "add": [2, 7, 14, 15, 16, 18, 19, 20, 22], "cosmo": [2, 3, 7, 15, 23], "keyword": [2, 7, 9, 14, 15], "option": [2, 4, 7, 9, 13, 14, 15, 16, 18, 19, 22, 23], "all": [2, 3, 4, 6, 7, 8, 9, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "written": [2, 4, 13, 14, 17, 19, 22, 23], "permitt": [2, 15], "scale": [2, 15], "screen": [2, 7, 15], "charg": [2, 4, 7, 15, 18, 22, 23], "int": [2, 4, 7, 15], "grid": [2, 7, 15, 23], "point": [2, 7, 15, 16, 18, 19, 20], "per": [2, 7, 15], "segment": [2, 15], "threshold": [2, 7, 15, 23], "element": [2, 3, 7, 9, 14, 15], "outer": [2, 15], "solvent": [2, 15], "sphere": [2, 15], "factor": [2, 7, 15], "outli": [2, 15], "correct": [2, 7, 8, 9, 12, 14, 15, 16, 19, 22, 23], "accept": [2, 15, 16, 17, 18, 22], "open": [2, 11, 14, 15, 21], "leav": [2, 15, 19], "untidi": [2, 15], "seam": [2, 15], "close": [2, 7, 14, 15, 22], "pave": [2, 15], "intersect": [2, 15], "bool": [2, 4, 7, 8, 9, 15], "true": [2, 3, 4, 7, 8, 9, 13, 14, 15, 19], "setup": [2, 15, 19, 20], "7": [2, 12, 15, 19, 20, 21, 22], "dest_dir": 2, "force_overwrit": 2, "fals": [2, 4, 7, 8, 9, 14, 15, 19], "copi": [2, 4, 15, 22], "referenc": [2, 19], "here": [2, 7, 8, 9, 14, 16, 17, 18, 19, 23], "destin": 2, "folder": [2, 4, 8, 9, 12, 14, 15, 17, 18, 19], "alreadi": [2, 4, 8, 14, 15, 16, 18, 19, 22], "exist": [2, 9, 13, 14, 15, 16, 18, 19], "present": [2, 4, 7, 13, 14, 15, 17, 19, 22], "overwritten": [2, 8], "properti": [2, 7, 8, 13, 18, 22, 23], "absent": [2, 7], "miss": [2, 7, 14, 15, 18], "classmethod": [2, 7], "filenam": [2, 7, 9], "given": [2, 3, 4, 7, 9, 13, 14, 15, 16, 18, 19, 20, 22, 23], "which": [2, 7, 8, 9, 11, 13, 14, 16, 18, 19, 22, 23], "new": [2, 7, 11, 12, 14, 15, 16, 17, 20, 21, 22], "redund_inp": 2, "extract": [2, 7, 12, 14, 15, 18, 19, 21, 23], "xxx": 2, "shells_typ": 2, "instanc": [2, 7, 9, 13, 14, 15, 16, 18, 23], "form": [2, 9, 13, 15, 22, 23], "grad": [2, 7, 12, 23], "determin": [2, 7, 9, 13, 14, 15, 19, 22, 23], "uhf": [2, 7, 14, 15, 23], "backup_suffix": 2, "remov": [2, 3, 7, 9, 14, 18, 19, 22], "last": [2, 7, 13, 23], "step": [2, 7, 14, 15, 22, 23], "In": [2, 3, 7, 8, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "addit": [2, 3, 9, 12, 13, 14, 15, 16, 18, 19, 20, 22, 23], "origin": [2, 9, 14, 19, 22], "locat": [2, 17, 19], "n": [2, 4, 13, 15], "extern": [2, 11, 19, 23], "call": [2, 6, 7, 13, 14, 15, 16, 18, 19, 22, 23], "current": [2, 4, 7, 12, 14, 15, 17, 18, 19, 21], "modif": [2, 9, 12, 19, 20, 22], "been": [2, 4, 6, 7, 12, 15, 16, 18, 19, 21, 22, 23], "done": [2, 6, 7, 8, 13, 14, 15, 16, 19], "well": [2, 12, 13, 15, 18, 19, 20, 22, 23], "case": [2, 3, 4, 7, 8, 9, 14, 15, 16, 17, 18, 19, 22], "ignor": [2, 3, 7, 15], "rais": [2, 3, 4, 7, 9, 14, 15, 16, 19], "runtimeerror": [2, 7], "dispersion_correct": [2, 7], "dispers": [2, 7, 14, 15, 23], "method": [2, 4, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 22, 23], "dft": [2, 4, 7, 14, 15, 23], "d1": [2, 4, 7, 15], "d2": [2, 4, 7, 15], "d3": [2, 4, 15], "bj": [2, 4, 15], "insensit": 2, "disp": [2, 4, 15], "elimin": 2, "collect": [2, 19, 22, 23], "tm": [2, 7], "execut": [2, 4, 7, 9, 14, 15, 16, 18, 19, 20, 21, 22, 23], "some": [2, 4, 7, 9, 12, 14, 15, 16, 18, 19, 22, 23], "scf": [2, 7, 15, 23], "scfkin": 2, "scfpot": 2, "mp2": [2, 4, 7, 12, 15, 23], "calcul": [2, 7, 8, 9, 12, 13, 15, 16, 18, 19, 21, 23], "kinet": [2, 7], "contribut": [2, 7, 11, 16, 19, 23], "potenti": [2, 7, 13, 16, 18], "total": [2, 7], "count": 2, "variat": 2, "less": [2, 23], "than": [2, 7, 14, 15, 18, 22, 23], "come": [2, 7, 15, 18, 19, 22, 23], "subfil": [2, 14, 23], "ax": [2, 7], "kwarg": [2, 3, 7], "evolut": [2, 7, 14], "matplotlib": [2, 7, 9], "figur": [2, 7, 15], "argument": [2, 4, 7, 9, 14, 15, 19], "pass": [2, 4, 7, 9, 14, 15, 16, 19, 22], "displai": [2, 7, 22], "mean": [2, 7, 12, 14, 18, 19, 22, 23], "titl": [2, 4, 7, 15], "show": [2, 7, 22], "savefig": [2, 7], "abc": [2, 7, 23], "png": [2, 7], "ep": [2, 7], "save": [2, 7], "size_kwarg": [2, 7], "dictionari": [2, 4, 7, 9, 14, 15, 16, 18, 23], "fig": [2, 7], "set_size_inch": [2, 7], "dict": [2, 4, 7, 9, 15], "w": [2, 7, 22], "h": [2, 7], "4": [2, 4, 7, 12, 13, 15, 19, 20, 21, 22], "tight_layout": [2, 7], "ax_grid": [2, 7], "left": [2, 7], "unchang": [2, 7], "ax_annot": [2, 7], "label": [2, 7], "subplot": [2, 7], "fig_clos": [2, 7], "lattice_vector": 2, "lattice_gradi": 2, "shape": [2, 7], "nstep": 2, "natom": [2, 7], "each": [2, 7, 9, 13, 14, 15, 18, 19, 22, 23], "perform": [2, 6, 7, 9, 12, 13, 14, 15, 16, 18, 19, 22, 23], "riper": [2, 7, 12, 23], "vector": [2, 7], "size": [2, 7, 15, 23], "dimension": [2, 12, 13], "one": [2, 3, 4, 7, 8, 9, 13, 14, 15, 16, 18, 19, 22, 23], "note": [2, 7, 9, 12, 13, 14, 15, 18, 19, 21, 23], "either": [2, 18, 19, 22], "differ": [2, 3, 7, 8, 9, 13, 14, 15, 16, 18, 19, 20, 22, 23], "One": [2, 7], "thu": [2, 15, 16, 18, 19, 20, 22, 23], "gradlatt": 2, "maximum": [2, 4, 7, 15], "largest": 2, "map": 2, "handl": [2, 4, 7, 12, 18], "integ": [2, 4], "fraction": [2, 7, 19], "presenc": [2, 14, 19], "same": [2, 3, 7, 13, 14, 18, 19, 22, 23], "multipl": [2, 7, 15, 19], "tupl": [2, 7, 8, 9, 13], "irrep_index": [2, 7], "occupi": [2, 7, 14, 23], "json": [2, 3, 7, 8, 9, 15, 18, 19, 21], "serializ": [2, 7], "represent": [2, 7, 14, 23], "d": [2, 7, 19, 22], "serial": [2, 12, 18, 19], "valueerror": [2, 7], "exampl": [2, 7, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "a1": [2, 7, 15], "b1": [2, 7], "b2": [2, 7], "irreduc": [2, 7, 14, 23], "electron": [2, 7, 15, 22], "data_group": [2, 14], "data_block": [2, 14], "backup_fil": 2, "comment": [2, 3, 14, 15, 17], "dollar": [2, 14], "sign": [2, 14, 22], "automat": [2, 7, 12, 13, 14, 16, 17, 19, 22], "block": [2, 14], "correspond": [2, 7, 8, 13, 14, 16, 18, 19, 20, 22], "back": [2, 9, 19, 23], "up": [2, 14, 15, 18, 19], "backup": 2, "replac": [2, 14, 19], "equival": [2, 3, 7, 9, 14, 18, 19, 22], "To": [2, 14, 19, 20, 22], "explicit": [2, 9, 14, 19], "simpli": [2, 7, 14, 16, 18], "control_dir": 2, "its": [2, 4, 7, 8, 13, 14, 15, 16, 19, 22, 23], "anoth": [2, 14, 19], "doe": [2, 14, 15, 22, 23], "directori": [2, 4, 7, 9, 14, 15, 19], "dir": 2, "strict": [2, 14, 19], "exact": [2, 14, 18, 22], "match": [2, 6, 7, 14, 19], "start": [2, 7, 14, 15, 16, 18, 19, 20, 21, 22], "modifi": [2, 7, 15, 16, 18, 19, 20, 21, 22], "sever": [2, 7, 18, 19, 21, 23], "updat": [2, 4, 7, 12, 14, 15, 18, 19, 20, 22], "accord": [2, 4, 7, 14, 15, 16, 17, 22], "option_name1": 2, "option_valu": 2, "option_name2": 2, "identifi": [2, 7, 9, 14, 16, 19, 20, 22], "entir": [2, 14, 18, 19, 22], "sinc": [2, 9, 14, 15, 16, 17, 18, 19, 23], "wai": [2, 4, 7, 14, 15, 16, 18, 19, 21, 22, 23], "attempt": [2, 22], "made": [2, 18, 22], "suitabl": [2, 7, 16, 17, 18, 19], "respons": [2, 14, 15, 16, 22], "caller": 2, "safer": 2, "chang": [2, 4, 7, 8, 13, 14, 17, 18, 20, 21, 22], "show_from_subfil": [2, 14], "raise_if_multiple_subfil": 2, "raise_if_missing_subfil": 2, "raise_if_regular_and_subfil": 2, "full": [2, 7, 9, 14, 15, 16, 21, 22], "just": [2, 14, 15, 18, 23], "so": [2, 14, 15, 16, 18, 19, 21, 22, 23], "correctli": [2, 18, 19], "within": [2, 7, 9, 15, 22], "suppos": 2, "whether": [2, 7, 9, 19, 22], "error": [2, 4, 7, 9, 14, 15, 16, 19], "standard": [2, 4, 7, 14, 15, 17, 22], "refer": [2, 3, 8, 9, 12, 13, 14, 16, 18, 19, 22], "regular": [2, 18, 23], "select": [2, 7, 14, 15], "found": [2, 4, 7, 9, 14, 17, 18, 19, 21, 22, 23], "includ": [2, 7, 14, 16, 21, 22], "anyth": [2, 22], "after": [2, 7, 14, 15, 16, 18, 19, 22], "symbol": [2, 7, 13, 14], "like": [2, 4, 7, 8, 9, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23], "queri": 2, "model": [2, 22], "manipul": 2, "convent": [2, 13, 14, 16, 17, 19], "fashion": [2, 22], "mani": 2, "human": 2, "readabl": [2, 22], "ascii": 2, "formal": 2, "split": [2, 3, 7, 14], "optim": [2, 7, 13, 14], "associ": [2, 7, 22, 23], "word": [2, 14], "veri": [2, 16, 18, 19], "larg": [2, 15], "molecular": [2, 4, 7, 15], "orbit": [2, 4, 7, 15, 23], "scfmo": [2, 23], "mo": [2, 7, 15], "complet": [2, 4, 7, 13, 14, 15, 16, 23], "descript": [2, 7, 16, 19, 23], "user": [2, 3, 8, 13, 14, 15, 16, 17, 18, 22, 23], "": [2, 7, 16, 18, 21, 22], "manual": [2, 15], "avail": [2, 4, 7, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23], "unnecessari": [2, 22], "space": [2, 3, 7, 14], "kept": [2, 18, 19], "appli": [2, 12, 14, 15, 19, 22], "interfer": 2, "actual": [2, 7, 9, 15, 19, 22], "alwai": [2, 4, 7, 9, 13, 14, 16, 18, 19], "first": [2, 3, 4, 7, 9, 12, 14, 16, 18, 19, 22, 23], "move": [2, 14, 19], "befor": [2, 4, 7, 9, 14, 15, 16, 18, 19, 21, 23], "ignored_dg": 2, "return_all_diff": 2, "asid": [2, 19], "two": [2, 3, 7, 9, 15, 19, 22], "chunk": [2, 7], "exactli": [2, 6, 18, 19], "except": [2, 3, 4, 6, 7, 9, 14, 15, 17, 19, 22], "thei": [2, 4, 7, 9, 13, 14, 17, 18, 19, 21, 22, 23], "lower": [2, 7, 19, 23], "toler": [2, 7, 9, 15, 18, 19], "otherwis": [2, 4, 7, 15, 18, 19, 22], "messag": [2, 4, 7, 9], "caus": [2, 22], "fail": [2, 3, 4, 7, 8, 9, 15, 16, 19, 22, 23], "varieti": [2, 15], "notat": [2, 7], "intend": [2, 19, 22], "more": [2, 13, 14, 16, 17, 18, 19, 21, 22, 23], "purpos": [2, 22], "rather": 2, "tool": [2, 4, 16, 19, 21, 22], "guarante": [2, 22], "even": [2, 4, 7, 9, 15, 16, 19, 22], "comparison": [2, 3, 9, 19], "expect": [2, 4, 6, 7, 9, 12, 15, 16, 19, 22], "skip": [2, 4, 9, 16], "result": [2, 7, 13, 14, 15, 19, 22, 23], "occurr": [2, 7], "coexist": 2, "shown": [2, 14, 19], "anywai": [2, 15, 19], "cleanup_typ": 2, "clean": [2, 12, 14], "everyth": [2, 14], "blank": [2, 14], "tab": [2, 14], "typic": [2, 14, 15, 22], "cleanup": [2, 3], "valid": [2, 4, 7, 14, 21, 22], "before_first_dollar": 2, "blank_lin": 2, "leading_spaces_dollar": 2, "leading_spaces_hash": 2, "four": 2, "hash": 2, "preced": [2, 7], "charact": 2, "dg1": [2, 3], "dg2": [2, 3], "second": [2, 3, 7, 15, 19, 23], "comment_typ": 2, "inform": [2, 4, 7, 11, 12, 13, 18, 19, 22, 23], "three": [2, 7, 15, 22, 23], "dummi": [2, 14], "span": 2, "inlin": [2, 14], "newlin": 2, "hash_start": 2, "after_end": 2, "hash_inlin": 2, "without": [2, 4, 8, 12, 13, 14, 18, 19, 22], "dg_to_remov": 2, "duplic": 2, "usag": 2, "follow": [2, 4, 7, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "remove_comment_typ": 2, "five": 2, "incorrectli": 2, "respect": [2, 7, 14, 19, 22, 23], "redund": [2, 13, 18], "off": [2, 7, 16], "global": [2, 19], "statu": [2, 13, 22], "weight": 2, "bond": [2, 3, 13], "bend": [2, 13], "k": [2, 13, 19], "involv": [2, 18], "linear": 2, "consid": [2, 4, 7, 14, 15, 16, 18, 19, 22, 23], "length": [2, 7], "collinear": 2, "linc": 2, "dihedr": 2, "tor": [2, 13], "stre": [2, 13], "definit": [2, 7, 9, 12, 13, 15, 19, 22], "establish": 2, "notimpl": 2, "concret": 2, "subclass": [2, 7, 9, 13, 14, 15, 16, 18, 19, 23], "intdef": [2, 3, 13], "static": [2, 6], "appropri": [2, 18, 19, 22], "0001": [2, 9], "check": [2, 3, 4, 6, 7, 9, 12, 14, 15, 16, 18, 19, 23], "posit": [2, 7], "index": [2, 7, 21, 23], "prepend": [2, 14], "insid": [2, 9, 15, 16, 18, 19, 22], "invers": 2, "invr": 2, "int_def": [2, 13], "user_defined_bond": [2, 13], "about": [2, 7, 11, 13, 15, 16, 18, 19, 21, 22, 23], "geometri": [2, 4, 7, 13, 14, 15, 23], "dynam": [2, 13, 15, 22], "while": [2, 13, 14, 15, 16, 18, 19], "constraint": [2, 18], "attribut": [2, 9, 13, 14, 15, 16, 18, 19, 22, 23], "notabl": 2, "inconsist": 2, "obtain": [2, 7, 8, 14, 18, 23], "order": [2, 3, 6, 7, 15, 16, 19, 22, 23], "index1": [2, 13], "index2": [2, 13], "where": [2, 4, 7, 13, 14, 15, 16, 18, 19, 22, 23], "atom1": [2, 13], "atom2": [2, 13], "vertex": [2, 13], "add_user_def_bond": 2, "simpl": [2, 7, 15], "produc": [2, 7, 9, 13, 15, 16, 19, 22, 23], "those": [2, 8, 13, 15, 18, 19, 22], "atom3": 2, "atom4": 2, "third": [2, 22], "fourth": 2, "overwrit": [2, 8, 18, 19], "atol": [2, 9], "ltol": 2, "whose": [2, 14, 17, 22], "bohr": [2, 13], "degre": 2, "out": [2, 7, 15, 22, 23], "plane": [2, 7], "outp": 2, "linp": 2, "miscellan": 2, "quit": [2, 4], "send": [2, 15, 16], "qq": [2, 15], "version": [2, 7, 9, 11, 12, 14, 17, 18, 21, 22, 23], "basic": [2, 7, 14, 17, 19, 22, 23], "exit": 2, "begin": [2, 14], "testdir": [3, 8], "instanti": [3, 18, 23], "mark": [3, 14, 18, 19, 22], "parametr": 3, "arg": 3, "control_filenam": 3, "control_test": 3, "control_filepath": 3, "variabl": [3, 4, 13], "repetit": 3, "white": 3, "import": [3, 9, 13, 14, 15, 17, 19, 22, 23], "param": 3, "molecule_filenam": 3, "ch4": 3, "molecule_filepath": 3, "to_test": 3, "ref": [3, 19], "helper": [3, 8, 13, 16, 18, 19, 23], "treat": [3, 7, 22], "them": [3, 4, 7, 13, 14, 16, 18, 19, 21, 22, 23], "approx": 3, "intedef": 3, "assum": [3, 19, 22], "val": [3, 13], "through": [3, 4, 8, 13, 14, 15, 16, 22, 23], "assert": [3, 9, 22], "properli": [3, 4], "sort": [3, 7, 23], "structure_filepath": 3, "testdefinerunn": [4, 6], "assert_sendline_cal": [4, 6], "assert_sendline_has_cal": [4, 6], "test_add_atomic_coordinates_from_fil": [4, 6], "test_add_atomic_coordinates_from_file_cartesian": [4, 6], "test_copy_mo_files_ab_mo": [4, 6], "test_copy_mo_files_alpha_beta": [4, 6], "test_copy_mo_files_error": [4, 6], "test_copy_mo_files_mo": [4, 6], "test_define_basis_set": [4, 6], "test_define_core_potenti": [4, 6], "test_define_symmetri": [4, 6], "test_define_symmetry_error": [4, 6], "test_determine_symmetri": [4, 6], "test_determine_symmetry_ep": [4, 6], "test_dump_command_fil": [4, 6], "test_excited_state_menu_error_not_activ": [4, 6], "test_excited_state_menu_frequ": [4, 6], "test_excited_state_menu_irrep": [4, 6], "test_excited_state_menu_irrep_wrong_sym": [4, 6], "test_excited_state_menu_polli": [4, 6], "test_excited_state_menu_rpa": [4, 6], "test_excited_state_menu_urpa": [4, 6], "test_excited_state_menu_urpa_error": [4, 6], "test_excited_state_menu_wrong_ex_method": [4, 6], "test_excited_state_menu_wrong_menu": [4, 6], "test_existing_coordin": [4, 6], "test_existing_coordinates_cartesian": [4, 6], "test_existing_coordinates_error": [4, 6], "test_existing_coordinates_no_upd": [4, 6], "test_existing_coordinates_unsupport": [4, 6], "test_expect": [4, 6], "test_expect_raise_eof": [4, 6], "test_expect_raise_timeout": [4, 6], "test_extended_hueckel_theory_menu_charg": [4, 6], "test_extended_hueckel_theory_menu_default": [4, 6], "test_extended_hueckel_theory_menu_error": [4, 6], "test_extended_hueckel_theory_menu_nocharg": [4, 6], "test_extended_hueckel_theory_menu_unpair": [4, 6], "test_general_menu_ccsdt": [4, 6], "test_general_menu_dft": [4, 6], "test_general_menu_hf": [4, 6], "test_general_menu_wrong_method": [4, 6], "test_generate_internal_coordin": [4, 6], "test_generate_internal_coordinates_error": [4, 6], "test_geometry_menu_copymo": [4, 6], "test_geometry_menu_incompatibility_1": [4, 6], "test_geometry_menu_incompatibility_2": [4, 6], "test_geometry_menu_new_coords_1": [4, 6], "test_geometry_menu_new_coords_2": [4, 6], "test_geometry_menu_new_coords_3": [4, 6], "test_geometry_menu_new_coords_4": [4, 6], "test_geometry_menu_no_new_coord": [4, 6], "test_get_bin_path": [4, 6], "test_go_to_general_menu": [4, 6], "test_init": [4, 6], "test_initialize_control_1": [4, 6], "test_initialize_control_2": [4, 6], "test_initialize_control_incompat": [4, 6], "test_is_al": [4, 6], "test_postprocess": [4, 6], "test_quit_general_menu": [4, 6], "test_run_full_1": [4, 6], "test_run_full_2": [4, 6], "test_run_generate_mo_fil": [4, 6], "test_run_generate_mo_files_sym": [4, 6], "test_run_update_internal_coord": [4, 6], "test_run_update_internal_coords_error": [4, 6], "test_sendlin": [4, 6], "test_set_basi": [4, 6], "test_set_basis_error": [4, 6], "test_set_basis_error_2": [4, 6], "test_set_basis_error_3": [4, 6], "test_set_dft_options_no_dft": [4, 6], "test_set_dft_options_use_dft": [4, 6], "test_set_dft_options_wrong_xc": [4, 6], "test_set_ecp_error": [4, 6], "test_set_ecp_error_2": [4, 6], "test_set_ecp_error_3": [4, 6], "test_set_metr": [4, 6], "test_set_mo_from_control_fil": [4, 6], "test_set_mo_from_control_file_2": [4, 6], "test_set_mo_from_control_file_error": [4, 6], "test_set_mo_from_control_file_longpath": [4, 6], "test_set_mp2_opt": [4, 6], "test_set_mp2_options_f12": [4, 6], "test_set_mp2_options_geoopt": [4, 6], "test_set_mp2_options_mp2": [4, 6], "test_set_mp2_options_mp2_error": [4, 6], "test_set_ri_st": [4, 6], "test_set_ri_state_marij": [4, 6], "test_set_scf_opt": [4, 6], "test_skip_atomic_attribute_menu": [4, 6], "test_skip_atomic_attribute_menu_error": [4, 6], "test_skip_atomic_attribute_menu_intern": [4, 6], "test_switch_to_atomic_attribute_menu": [4, 6], "test_switch_to_atomic_attribute_menu_intern": [4, 6], "test_switch_to_atomic_attribute_menu_internal_error": [4, 6], "test_switch_to_molecular_orbital_definition_menu": [4, 6], "test_switch_to_scf_menu": [4, 6], "testexcept": [4, 6], "test_creat": [4, 6], "dr_data": [4, 6, 16], "test_get_define_templ": [4, 6], "test_validate_paramet": [4, 6], "pattern": [4, 15, 22], "go": [4, 15, 19], "timeout": [4, 15], "eof": 4, "problem": [4, 7, 9, 11, 15, 16, 18, 22], "incomplet": 4, "ir": [4, 7, 13, 15], "happen": [4, 14, 15, 16, 18, 19], "incompat": [4, 17, 19, 20, 22], "among": [4, 7, 14, 15, 19, 22], "previou": [4, 7, 12, 15, 18, 19, 22, 23], "60": [4, 15, 22], "log_filepath": 4, "log": [4, 12, 20, 21], "workdir": 4, "use_popen": 4, "pexpect": [4, 15], "commun": [4, 18, 22], "avoid": [4, 7, 14, 16, 19, 22], "side": [4, 14, 19, 23], "effect": [4, 14, 19, 22], "dure": [4, 13, 14, 18], "wait": 4, "search": [4, 7, 21], "environ": [4, 11, 19], "popen_spawn": 4, "popenspawn": 4, "popen": 4, "spawn": [4, 15, 16], "pty": 4, "define_command": 4, "dump": [4, 7], "command": [4, 6, 7, 9, 14, 15, 16, 19, 22], "behavior": [4, 14, 16, 19], "menu": [4, 15, 16, 22], "job": [4, 7, 9, 15], "reach": 4, "being": [4, 7, 14, 15, 19, 22], "normal": [4, 7, 22, 23], "abnorm": [4, 15], "regener": [4, 9, 12, 15, 19, 22], "must": [4, 22], "usemo": [4, 15], "taken": [4, 9, 19, 21], "scratch": 4, "extend": [4, 15, 22], "hueckel": [4, 15], "guess": [4, 15], "edit": 4, "least": [4, 6, 16, 18, 19, 22], "enabl": [4, 15, 21, 22], "enter": [4, 22], "sym": [4, 15], "desi": [4, 15], "notic": [4, 7, 12, 13, 19, 22], "disabl": [4, 15], "termin": [4, 15, 22], "similar": [4, 14, 18, 22, 23], "afterward": [4, 13, 15], "were": [4, 6, 7, 14, 19, 22], "successfulli": [4, 9], "unexpect": 4, "proper": [4, 7], "ha": [4, 7, 8, 12, 13, 14, 15, 16, 18, 19, 22, 23], "do": [4, 9, 16, 17, 18, 21, 22], "schema": [4, 15, 16], "excit": [4, 7, 15], "cerberu": [4, 15, 16], "yaml": [4, 15, 19], "nullabl": [4, 16], "basis_atom": [4, 15], "keysrul": 4, "valuesrul": 4, "use_cosmo": [4, 15], "coord_fil": [4, 15], "copymo": [4, 15], "boolean": [4, 7, 19], "desy_ep": [4, 15], "min": 4, "ecp_atom": 4, "ex_all_st": [4, 15], "default_sett": 4, "local": [4, 22], "setter": 4, "ex_method": [4, 15], "ex_multi": [4, 15], "ex_exopt": [4, 15], "ex_frequ": [4, 15], "ex_frequency_unit": [4, 15], "ex_irrep_st": [4, 15], "rpa": [4, 7, 15], "ci": [4, 15], "dynpol": [4, 15], "polli": [4, 15], "singlet": [4, 7, 15], "doublet": [4, 15], "triplet": [4, 15], "ex_mp2": [4, 15], "gridsiz": [4, 14, 15], "marij": [4, 7, 15], "oneof": 4, "rijk": [4, 15], "ri": [4, 7, 15, 23], "maxcor": [4, 15], "adc": [4, 15], "ccsd": [4, 15], "t": [4, 15], "ccsdt": [4, 15], "maxit": [4, 15], "hf": [4, 15], "mp2energi": [4, 15], "scfconv": [4, 14, 15], "max": [4, 7], "9": [4, 15, 22], "scfiterlimit": [4, 14, 15], "200": 4, "sym_ep": [4, 15], "unpaired_electron": [4, 15], "use_f12": [4, 15], "experiment": [4, 12, 13, 15, 16], "featur": [4, 11, 13, 15, 16, 17, 19, 20, 21, 22], "unit": [6, 13, 15, 16, 17, 18, 21], "mainli": [6, 13, 15, 17, 18, 19, 23], "mock": [6, 16, 19], "sendline_mock": 6, "sendlin": 6, "els": 6, "assert_has_cal": 6, "mo_dirpath": [6, 8], "request": [6, 7, 8, 11], "test_aoforcevibrationaldata": [7, 8], "test_scfiterationdata": [7, 8], "test_str": [7, 8], "test_properti": [7, 8], "cls_dict_path": [7, 8, 18], "generate_fil": [7, 8, 18], "testfunct": [7, 8], "test_convert_float": [7, 8], "test_convert_int": [7, 8], "test_convert_time_str": [7, 8], "testpars": [7, 8], "test_fail_all_done_check": [7, 8], "test_get_split_jobex_pars": [7, 8], "test_get_valu": [7, 8], "test_grep_lin": [7, 8], "parser_and_dict": [7, 8], "test_eiger_runn": [7, 8], "test_error_homo": [7, 8], "test_hol": [7, 8], "test_no_empty_st": [7, 8], "test_parsing_failur": [7, 8], "stdout": [7, 9, 19, 23], "reli": [7, 16, 17, 18, 19, 22, 23], "core_memory_dft": 7, "memory_per_atom": 7, "atoms_per_loop": 7, "construction_tim": 7, "numer": [7, 9, 14, 18, 19, 23], "aoforc": [7, 12, 19, 23], "Will": [7, 9], "numforc": 7, "remain": [7, 14, 22], "memori": [7, 15], "mb": 7, "need": [7, 14, 15, 16, 18, 19, 22, 23], "kb": 7, "loop": 7, "timing_descript": 7, "cpu_tim": 7, "wall_tim": 7, "cpu": 7, "wall": 7, "intens": 7, "m": [7, 13, 19], "dipole_mo": 7, "analysi": [7, 19, 23], "rotat": [7, 23], "constant": 7, "cm": 7, "optic": 7, "u": [7, 13, 18, 19], "3x3": 7, "dipol": [7, 23], "moment": [7, 15, 16, 23], "principl": [7, 17, 19], "axi": 7, "frequenc": [7, 15], "ddip_dq": 7, "intensities_perc": 7, "raman": 7, "eigenvector": [7, 19], "reduced_mass": 7, "vibrat": [7, 23], "mode": [7, 19, 22], "deriv": 7, "km": 7, "mol": 7, "percentag": 7, "num": 7, "reduc": [7, 14], "mass": [7, 23], "zpve": 7, "panda": 7, "datafram": 7, "neg": 7, "satisfi": [7, 22], "condit": [7, 18, 19, 22], "ab": 7, "zero": 7, "relev": [7, 14, 18, 19, 21, 22, 23], "basis_per_speci": 7, "aux_basis_per_speci": 7, "number_scf_basis_func": 7, "number_scf_aux_basis_func": 7, "most": [7, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "escf": [7, 12, 18, 23], "speci": 7, "auxiliari": [7, 9], "auxialiari": 7, "info": 7, "screening_charg": 7, "element_radiu": 7, "area": [7, 22], "volum": [7, 22], "nsph": 7, "npspher": 7, "disex2": 7, "phsran": 7, "ampran": 7, "refind": 7, "fepsi": 7, "dielectr": 7, "total_energi": [7, 23], "total_energy_oc_corr": 7, "dielectric_energi": 7, "dielectric_energy_oc_corr": 7, "radiu": 7, "site": 7, "egrad": [7, 12, 23], "spherical_grids": 7, "gridpoint": 7, "exchang": [7, 19, 23], "correl": [7, 19, 23], "spheric": 7, "en_corr": 7, "paser": 7, "unrestricted_electron": 7, "dipole_vector": 7, "dipole_norm": 7, "quadrupole_tensor": 7, "quadrupole_trac": 7, "quadrupole_anisotropi": 7, "electrostat": [7, 23], "quadrupol": [7, 23], "unrestrict": 7, "compon": [7, 19, 22], "tensor": 7, "trace": 7, "anisotropi": 7, "calc_typ": 7, "iter": [7, 15, 23], "residuum_convergence_criterium": 7, "n_occupied_orbit": 7, "orbital_character": 7, "max_davidson_it": 7, "machine_precis": 7, "max_core_mem": 7, "max_cao_basis_vector": 7, "max_treated_vector": 7, "irrep_data": 7, "gs_tot_en": 7, "residuum": 7, "converg": [7, 12, 23], "criterium": 7, "how": [7, 16, 18, 19, 21, 22, 23], "davidson": 7, "machin": [7, 19, 22], "precis": [7, 13, 22], "cao": 7, "simultan": [7, 22], "degeneraci": 7, "dimens": 7, "ground": 7, "detail": [7, 17, 18, 19, 21, 22, 23], "sublist": 7, "convern": 7, "dealt": 7, "inner": 7, "euclidean": 7, "residu": 7, "msg": 7, "func_typ": 7, "xcfun": 7, "relax": [7, 12, 23], "concern": [7, 16, 17, 18, 22], "xc": 7, "gga": 7, "lda": 7, "center_of_mass": 7, "center_of_charg": 7, "integral_neglect_threshold": 7, "thize": [7, 14], "thime": [7, 14], "gradien": 7, "neglect": 7, "storag": [7, 22], "energy_onli": 7, "lattice_param": 7, "shortest_interatomic_dist": 7, "direct_space_vector": 7, "reciprocal_space_vector": 7, "shortest": 7, "interatom": 7, "align": 7, "x": [7, 9, 19, 20, 21], "xy": 7, "reciproc": 7, "pi": 7, "v": 7, "a2": 7, "a3": 7, "b3": 7, "crystallograph": 7, "recov": 7, "energy_chang": 7, "rms_displ": 7, "max_displ": 7, "rms_grad": 7, "max_grad": 7, "final": [7, 14, 17, 18, 22, 23], "what": [7, 18, 19, 22], "statpt": [7, 12, 18, 23], "thr": 7, "conv": 7, "achiev": [7, 19, 22], "rm": 7, "displac": 7, "thr_int_coord": 7, "criterion": [7, 22], "norm_cartesian": 7, "norm_intern": 7, "max_intern": 7, "stapt": [7, 23], "take": [7, 13, 15, 16, 18, 19, 22, 23], "account": 7, "ricor": 7, "rij_memori": 7, "rik": 7, "ridft": [7, 12, 15, 18, 19, 23], "approxim": [7, 22], "rij": 7, "host": [7, 22], "start_tim": 7, "end_tim": 7, "wa": [7, 15, 22, 23], "datetim": 7, "dii": [7, 23], "diis_error_vect": 7, "conv_tot_en": 7, "conv_one_e_en": 7, "virtual_orbital_shift_on": 7, "virtual_orbital_shift_limit": 7, "restart_fil": 7, "oper": [7, 14, 16, 22, 23], "switch": [7, 19], "increment": [7, 20], "virtual": [7, 23], "shift": [7, 23], "character": [7, 22], "restart": 7, "kinetic_energi": 7, "potential_energi": 7, "virial_theorem": [7, 23], "wavefunction_norm": 7, "coulomb_energi": 7, "xc_energi": 7, "ts_energi": 7, "free_energi": 7, "sigma0_energi": 7, "virial": 7, "theorem": 7, "wavefunct": 7, "coulomb": 7, "entrop": 7, "free": [7, 22], "sigma0": 7, "first_index": 7, "damp": 7, "keep": [7, 14, 16, 19, 22], "wast": [7, 18], "higher": [7, 12, 21, 23], "tot_en": 7, "osc_str": 7, "rot_str": 7, "dominant_contribut": 7, "moments_column": 7, "cannot": [7, 14, 15, 19, 22], "oscil": 7, "strength": 7, "rotatori": 7, "domin": 7, "occ_orb": 7, "virt_orb": 7, "coeff": 7, "coeffici": 7, "electr": 7, "magnet": 7, "column": 7, "electric_dipol": 7, "magnetic_dipol": 7, "electric_quadrupol": 7, "initial_elec_temp": 7, "final_elec_temp": 7, "annealing_factor": 7, "annealing_homo_lumo_gap_limit": 7, "smearing_de_limit": 7, "smear": [7, 23], "temperatur": 7, "anneal": 7, "de": 7, "max_trust_radiu": 7, "min_trust_radiu": 7, "init_trust_radiu": 7, "min_grad_norm_for_gdii": 7, "prev_steps_for_gdii": 7, "hessian_update_method": 7, "thr_energy_chang": 7, "thr_max_displ": 7, "thr_max_grad": 7, "thr_rms_displ": 7, "thr_rms_grad": 7, "use_default": 7, "final_step_radiu": 7, "trust": 7, "minimum": [7, 15], "gdii": 7, "hessian": 7, "n_rep": 7, "rep": 7, "part": [7, 12, 14, 18, 19, 22], "might": [7, 12, 13, 14, 15, 16, 18, 19, 21, 22], "build": [7, 18, 23], "numerical_integr": 7, "aforc": 7, "work": [7, 8, 12, 13, 14, 15, 18, 19, 22], "nativ": 7, "ex_stat": 7, "minim": 7, "rel": [7, 9, 14, 16, 18], "prece": 7, "rdgrad": [7, 23], "jobex": [7, 12, 23], "mpgrad": [7, 12, 23], "ricc2": [7, 12, 15, 23], "pnoccsd": [7, 23], "pno": 7, "program": [7, 9, 12, 17, 22], "yet": [7, 19], "dscf": [7, 12, 15, 19, 23], "main": [7, 16, 18, 19, 21], "portion": [7, 16, 18, 19, 22], "aim": [7, 15, 19, 22], "reusabl": 7, "possibl": [7, 14, 15, 16, 17, 18, 19, 22], "across": [7, 19, 22], "quantiti": [7, 21, 23], "access": [7, 15, 16, 18, 19, 20, 21, 22, 23], "lazi": [7, 18, 23], "section": [7, 15, 16, 17, 18, 19, 22, 23], "crash": 7, "lead": [7, 14, 15, 17, 19], "wrong": 7, "heavili": [7, 16], "regex": 7, "isotop": 7, "activ": [7, 15, 22], "subdictionari": 7, "xf": 7, "functional_msg": 7, "functional_nam": 7, "functional_typ": 7, "chosen": [7, 18], "exopt": [7, 15], "check_all_don": 7, "exec_en": 7, "parser_en": 7, "exec_grad": 7, "parser_grad": 7, "exec_relax": 7, "parser_relax": 7, "text": [7, 18, 21, 23], "find": [7, 22], "th": [7, 15], "callabl": 7, "better": [7, 19], "instead": [7, 9, 13, 14, 16, 18, 19, 22, 23], "nline": 7, "similarli": [7, 23], "grep": 7, "plu": [7, 15, 22], "tm_version": [7, 8], "tm_build": 7, "tm_lattice_param": 7, "pre": [7, 12], "print": [7, 9, 19, 23], "alloc": 7, "exponenti": 7, "11": [7, 21, 22], "23": 7, "123e": 7, "01": [7, 19], "123d": 7, "compos": [7, 23], "asterisk": 7, "fortran": 7, "dai": [7, 22], "hour": 7, "12": [7, 22], "minut": 7, "55": 7, "nelec": 7, "eiger": [7, 23], "ascend": [7, 23], "inddic": 7, "1e": [7, 9], "06": 7, "anot": 7, "data_path": 7, "compat": [7, 18, 19, 21], "mutablesequ": [7, 23], "sequenc": [7, 16], "increas": [7, 14, 15, 21], "eigenst": [7, 23], "subset": [7, 16], "filter": 7, "shortcut": [7, 14], "hole": 7, "allow_fract": 7, "only_occupi": 7, "reorder_irrep_index": 7, "lowest": [7, 23], "fill": [7, 13], "ones": [7, 15, 18, 19], "procedur": [7, 16, 22, 23], "becaus": [7, 18, 22], "equal": [7, 9, 17], "self": [7, 11, 16], "ly": 7, "dg_string": 7, "py": [8, 17, 19, 20], "repeat": [8, 18, 19, 23], "verifi": [8, 14, 15, 19], "implicitli": 8, "target": [8, 16, 18, 19], "extens": [8, 15, 22], "files_list": [8, 18], "pytest": [8, 9, 19], "fixtur": [8, 16, 18, 19], "These": [8, 13, 14, 15, 19, 22, 23], "ensur": [8, 16, 22], "parser_method": [8, 9, 18], "infrastructur": [9, 19], "configur": [9, 19, 20], "10": [9, 15, 22], "dryrun_itest": [9, 19], "baseexcept": 9, "itest": [9, 19], "obj": 9, "test_if_subclass": 9, "tri": 9, "By": [9, 15, 19, 22], "deactiv": 9, "desir": [9, 16], "rtol": 9, "07": 9, "ignored_valu": 9, "err_msg": 9, "verbos": 9, "numpi": 9, "assert_equ": 9, "16": [9, 21, 22], "assertionerror": 9, "requir": [9, 12, 13, 14, 15, 16, 17, 18, 19, 22], "scalar": 9, "arrai": 9, "almost": 9, "conflict": 9, "assert_allclos": 9, "absolut": [9, 15, 19, 22], "still": [9, 13, 14, 18, 19], "though": [9, 15, 18, 19, 22, 23], "failur": [9, 15, 16, 19, 22], "current_level": 9, "nest": 9, "test_definit": 9, "log_fpath": 9, "outdir": 9, "logfil": 9, "struc": 9, "file_nam": 9, "_privat": 9, "expos": 9, "public": [9, 22], "isnan": 9, "typeerror": 9, "rubric": 9, "ufunc": 9, "sometim": 9, "notimplementedtyp": 9, "wrapper": 9, "make": [9, 11, 14, 16, 17, 18, 19, 20, 22], "sure": [9, 14, 16, 22], "onc": [9, 18, 19], "solv": [9, 15], "level": [9, 16, 18, 19, 23], "instal": [9, 19, 22], "define_opt": 9, "coord_filenam": 9, "control_reference_filenam": 9, "file_class": 9, "datagroups_opt": 9, "success": [9, 19], "datagroup_nam": 9, "datagroup_valu": 9, "delet": [9, 19], "changedir": 9, "context": [9, 18, 19, 22], "manag": [9, 18, 19, 21], "temporari": [9, 19], "tempfil": 9, "mkdtemp": 9, "cd": 9, "monti": [9, 18, 21, 23], "o": [9, 11, 13, 19], "preserv": [9, 22], "yield": 9, "touch": 9, "turbomoleio": [10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "you": [11, 13, 14, 15, 16, 18, 19, 20, 22, 23], "patch": [11, 20], "issu": 11, "github": [11, 12], "http": [11, 22], "com": 11, "matgenix": 11, "pleas": [11, 22], "much": [11, 14, 15, 16, 19, 23], "small": [11, 15, 18, 19], "snippet": 11, "reproduc": [11, 14, 19], "your": [11, 15, 16, 18, 19, 22, 23], "python": [11, 12, 13, 14, 17, 19, 20, 21], "document": [12, 16, 17, 19, 20, 22, 23], "commit": [12, 22], "hook": 12, "lint": 12, "workflow": [12, 15, 21], "adapt": [12, 22], "progress": [12, 13], "api": [12, 13, 14, 17, 20, 23], "prior": [12, 13, 19, 22], "preliminari": 12, "rimp2": 12, "reorgan": 12, "script": [12, 14, 19, 22, 23], "offici": [12, 22], "gpl": [12, 22], "v3": 12, "licens": [12, 21], "simul": 13, "howev": [13, 14, 15, 16, 18, 22, 23], "further": [13, 22, 23], "reason": [13, 14, 15, 19, 22], "advantag": [13, 15, 16, 17, 18], "convers": 13, "limit": [13, 14, 15, 19, 22], "capabl": 13, "isol": [13, 18], "see": [13, 15, 16, 17, 19, 22, 23], "below": [13, 14, 18, 19, 22, 23], "exploit": 13, "simplest": [13, 15], "translat": 13, "look": [13, 14, 19, 23], "00000000000000": 13, "17616323936717": 13, "03717448857876": 13, "35232647873438": 13, "complic": [13, 16], "commonli": 13, "we": [13, 14, 15, 16, 18, 19, 22, 23], "stress": 13, "again": [13, 18, 23], "oppos": 13, "Their": [13, 19], "bring": [13, 16], "few": [13, 14, 16, 17, 23], "let": [13, 18], "never": [13, 14], "nor": [13, 22], "As": [13, 14, 15, 18, 19], "subsequ": 14, "lack": 14, "unambigu": 14, "distinct": 14, "superflu": 14, "particular": [14, 15, 16, 18, 19, 20, 22, 23], "appar": 14, "strictli": [14, 17], "mandatori": 14, "under": [14, 18, 19, 22], "offer": [14, 22, 23], "view": [14, 18, 22], "inspir": 14, "distribut": [14, 16, 19, 22], "simplic": 14, "ambigu": 14, "encount": [14, 15], "ask": [14, 22], "intent": [14, 22], "p": [14, 15], "m3": 14, "interest": [14, 22], "dg": 14, "kind": [14, 15, 18, 19, 22, 23], "uniform": 14, "next": [14, 19, 22], "join": 14, "want": [14, 15, 16, 18, 21, 22], "c1": 14, "100": 14, "abov": [14, 15, 18, 19, 22, 23], "lastli": [14, 18, 19, 23], "whole": [14, 15, 18, 19, 22], "connect": [14, 19, 21, 22], "pbe": 14, "design": [14, 18, 19, 21, 22, 23], "besid": 14, "frequent": 14, "over": [14, 19], "best": [14, 16, 19, 22], "attent": 14, "organ": [14, 18, 19, 22, 23], "analys": 14, "divid": [14, 19], "mention": [14, 15, 19], "explicitli": [14, 15, 22], "crucial": 15, "challeng": 15, "autom": 15, "child": 15, "applic": [15, 19, 22], "respond": 15, "complex": 15, "speed": 15, "navig": 15, "histori": [15, 16], "submit": 15, "sent_command": [15, 16], "repli": [15, 16], "brought": 15, "situat": 15, "foreseen": 15, "realli": [15, 19], "low": 15, "too": [15, 22], "120": 15, "good": [15, 16, 18, 19, 23], "compromis": 15, "previous": [15, 19], "interrupt": 15, "help": [15, 17, 19], "predefin": 15, "prepar": [15, 19], "dp": 15, "dr": 15, "prepapar": 15, "Of": [15, 22], "cours": [15, 19, 22], "tune": [15, 19], "proceed": 15, "retriev": 15, "cover": [15, 19, 22], "everi": [15, 22], "scenario": 15, "focus": [15, 23], "keywork": 15, "overrid": [15, 19], "forc": [15, 22], "sy": 15, "distinguish": [15, 22], "ciss": 15, "rpat": 15, "cist": 15, "outcom": [15, 19], "eht": 15, "uht": 15, "larger": [15, 22], "num_exc_st": 15, "multiplicity_int": 15, "exci": 15, "nexc": 15, "polaris": 15, "589": 15, "nm": 15, "enforc": [15, 17, 22], "treatment": 15, "geoopt": 15, "def2": 15, "sv": 15, "specic": 15, "unpair": 15, "f12": 15, "ccsdapprox": 15, "rir12": 15, "accuraci": 15, "rang": 15, "cosmo_out": 15, "paramat": 15, "At": [15, 23], "prevent": [15, 19, 22], "typo": 15, "altern": [15, 16, 22], "define_parameters_valid": 15, "Being": [15, 16], "bit": 15, "care": [15, 18, 19, 21], "certain": [15, 22], "probabl": [15, 16, 18, 23], "guid": [16, 17, 18, 19, 23], "briefli": 16, "discuss": [16, 18, 19], "aspect": [16, 17], "rememb": [16, 18], "trivial": [16, 19], "prone": 16, "littl": [16, 19], "wish": [16, 19, 22, 23], "explor": 16, "plan": [16, 19], "protect": [16, 22], "_": 16, "right": [16, 22], "turn": 16, "introduc": [16, 18, 19], "carefulli": [16, 18, 19, 21], "There": 16, "mind": [16, 18], "advanc": [16, 21], "_sendlin": 16, "_expect": 16, "track": 16, "receiv": [16, 22], "known": 16, "intercept": 16, "signal": 16, "disrupt": 16, "flow": [16, 22], "run_": 16, "share": [16, 18, 22], "idea": [16, 22, 23], "mimic": 16, "reus": 16, "develop": [16, 17, 18, 19, 22, 23], "natur": [16, 18, 21, 22], "variou": [16, 23], "explan": [16, 17, 18], "hoc": 16, "interconnected": 16, "introduct": [16, 19], "succe": 16, "against": [16, 22], "real": 16, "welcom": [16, 22], "improv": 16, "power": [16, 22], "place": [16, 19, 22, 23], "learn": 16, "dependeci": 16, "With": 17, "nonetheless": 17, "compli": [17, 22], "guidelin": 17, "greater": 17, "8": [17, 21, 22], "understand": [17, 19, 23], "orient": 17, "inherit": 17, "often": [17, 19], "pep": 17, "style": 17, "although": [17, 22, 23], "deviat": 17, "advis": [17, 21, 22], "stick": [17, 19], "essenti": [17, 19, 22], "futur": [17, 22], "googl": 17, "docstr": 17, "docs_rst": 17, "typeset": 17, "restructuredtext": 17, "html": [17, 19, 22], "sphinx": 17, "doc": [17, 20], "rst": 17, "invok": 17, "task": 17, "remark": 17, "strongli": 17, "discourag": [17, 19], "backward": [17, 18, 19, 21], "clear": [17, 22], "clearli": [17, 22], "highlight": 17, "possibli": [17, 19, 23], "agre": [17, 18, 22], "maintain": [17, 22], "explain": [18, 19, 22], "depth": 18, "inspect": [18, 19], "meant": 18, "lazy_properti": 18, "mix": 18, "temporarili": 18, "dispos": 18, "narrow": 18, "down": [18, 21], "abl": 18, "togeth": [18, 23], "On": 18, "hand": 18, "prefer": [18, 22, 23], "approach": [18, 23], "quickli": 18, "he": 18, "rest": [18, 23], "impact": 18, "proce": [18, 19], "bottom": 18, "express": [18, 22, 23], "focu": [18, 23], "analyz": [18, 19], "consider": 18, "appear": 18, "disappear": 18, "latter": 18, "newli": 18, "__init__": [18, 20], "deseri": 18, "old": [18, 19], "anymor": 18, "upon": 18, "manner": [18, 20, 22, 23], "address": [18, 22], "encapsul": 18, "recommend": 18, "hold": 18, "exec_to_out_obj": 18, "decid": [18, 22], "mayb": 18, "extrem": [18, 19], "becom": 18, "bug": [18, 19, 20, 21], "partial": 18, "loos": 18, "warn": 18, "deal": [18, 23], "process": 19, "meet": [19, 22], "behav": 19, "exhaust": 19, "beyond": [19, 22], "scope": [19, 22], "somewhat": 19, "arbitrari": 19, "own": [19, 22], "reintroduc": 19, "later": [19, 22], "wide": [19, 22], "custom": [19, 22], "coverag": [19, 22], "cov": 19, "sum": 19, "easiest": 19, "pip": 19, "mongomock": 19, "runtest": 19, "sh": 19, "project": 19, "report": [19, 21], "coverage_html": 19, "coveragerc_unit": 19, "coveragerc_integr": 19, "subfold": 19, "creation": 19, "toward": 19, "high": 19, "rate": 19, "alon": [19, 23], "99": 19, "tm_v7": 19, "additionn": 19, "necessari": [19, 22], "integrations_test": 19, "exclud": [19, 22], "outright": 19, "obvious": 19, "meaningless": 19, "date": [19, 22], "elaps": 19, "chemic": 19, "slightli": [19, 20], "impract": 19, "meaning": 19, "acoust": 19, "vari": 19, "inde": 19, "cumbersom": 19, "inevit": 19, "underli": 19, "renam": 19, "altogeth": 19, "now": 19, "releas": [19, 20, 21, 22], "light": 19, "looser": 19, "tolear": 19, "wise": 19, "test_dscf": 19, "test_run_dscf_hf": 19, "trigger": 19, "imposs": 19, "wrongli": 19, "systemat": [19, 22, 23], "short": [19, 22], "enough": [19, 23], "comput": [19, 22], "resourc": 19, "gain": 19, "89": 19, "test_": 19, "discov": 19, "experi": 19, "unittest": 19, "testcas": 19, "onlin": 19, "practic": [19, 22], "whenev": 19, "tmpdir": 19, "why": [19, 22], "conftest": 19, "eas": [19, 20], "itself": [19, 22], "benzen": 19, "benzene_myxc": 19, "hereaft": [19, 22], "testgen": 19, "testexec": 19, "testnam": 19, "excerpt": 19, "tree": 19, "aceton_ful": 19, "h2_numforc": 19, "aceton_dftd3_tzvp": 19, "h2o_std": 19, "h2o_uhf": 19, "nh3_cosmo_fermi": 19, "nh3_dftd1": 19, "tests_config": 19, "generate_output_fil": 19, "generate_control": 19, "tm_vx": 19, "y": [19, 20], "z": 19, "v7": 19, "thing": [19, 22], "action": [19, 22], "fulli": 19, "due": 19, "critic": 19, "measur": [19, 22], "dev_script": 19, "parsing_update_differ": 19, "dry": 19, "minor": [19, 20], "occur": [19, 22], "fpath": 19, "aris": [19, 22], "newest": 19, "older": [19, 20], "safe": 19, "transit": 19, "facilit": 19, "know": [19, 22], "adopt": [20, 22], "semant": 20, "major": [20, 22], "__version__": 20, "conf": 20, "latest": 20, "librari": [21, 22], "summar": 21, "mongodb": 21, "databas": 21, "firework": 21, "quick": 21, "overal": 21, "appendix": 21, "runner": 21, "suit": 21, "changelog": 21, "feb": 21, "24": 21, "2022": 21, "15": [21, 22], "sep": 21, "20": [21, 22], "2021": 21, "mar": 21, "page": 21, "softwar": 22, "redistribut": 22, "term": 22, "gnu": 22, "publish": 22, "foundat": 22, "hope": 22, "warranti": 22, "impli": 22, "merchant": 22, "fit": 22, "FOR": 22, "29": 22, "june": 22, "2007": 22, "copyright": 22, "inc": 22, "fsf": 22, "org": 22, "everyon": 22, "permit": 22, "verbatim": 22, "preambl": 22, "copyleft": 22, "awai": 22, "freedom": 22, "contrast": 22, "our": 22, "author": 22, "speak": 22, "price": 22, "piec": [22, 23], "deni": 22, "surrend": 22, "therefor": 22, "grati": 22, "fee": 22, "recipi": 22, "And": 22, "legal": 22, "permiss": 22, "sake": 22, "erron": 22, "devic": 22, "manufactur": 22, "fundament": 22, "abus": 22, "product": 22, "individu": 22, "unaccept": 22, "prohibit": 22, "substanti": 22, "domain": 22, "stand": 22, "readi": 22, "provis": 22, "threaten": 22, "constantli": 22, "patent": 22, "restrict": 22, "special": 22, "danger": 22, "proprietari": 22, "assur": 22, "render": 22, "AND": 22, "law": 22, "semiconductor": 22, "mask": 22, "license": 22, "earlier": 22, "unmodifi": 22, "propag": 22, "secondarili": 22, "liabl": 22, "infring": 22, "privat": 22, "countri": 22, "convei": 22, "parti": 22, "mere": 22, "network": 22, "transfer": 22, "extent": 22, "conveni": 22, "promin": 22, "visibl": 22, "tell": 22, "item": 22, "recogn": 22, "bodi": 22, "languag": 22, "serv": 22, "kernel": 22, "window": 22, "compil": 22, "interpret": 22, "link": [22, 23], "subprogram": 22, "intim": 22, "grant": 22, "irrevoc": 22, "met": 22, "affirm": 22, "unlimit": 22, "constitut": 22, "acknowledg": 22, "fair": 22, "long": 22, "sole": 22, "exclus": 22, "facil": 22, "materi": 22, "behalf": 22, "outsid": 22, "relationship": 22, "circumst": 22, "sublicens": 22, "anti": 22, "circumvent": 22, "No": 22, "shall": 22, "deem": 22, "technolog": 22, "fulfil": 22, "oblig": 22, "articl": 22, "wipo": 22, "treati": 22, "decemb": 22, "1996": 22, "waiv": 22, "forbid": 22, "exercis": 22, "disclaim": 22, "medium": 22, "conspicu": 22, "intact": 22, "absenc": 22, "along": [22, 23], "carri": 22, "anyon": 22, "who": [22, 23], "possess": 22, "regardless": 22, "invalid": 22, "independ": 22, "aggreg": 22, "inclus": 22, "embodi": 22, "accompani": 22, "durabl": 22, "customarili": 22, "interchang": 22, "year": 22, "spare": 22, "cost": 22, "server": 22, "occasion": 22, "noncommerci": 22, "subsect": [22, 23], "6b": 22, "sai": 22, "peer": 22, "transmiss": 22, "6d": 22, "consum": 22, "tangibl": 22, "person": 22, "famili": 22, "household": 22, "sold": 22, "incorpor": 22, "dwell": 22, "doubt": 22, "resolv": 22, "favor": 22, "commerci": 22, "industri": 22, "unless": 22, "signific": 22, "suffic": 22, "continu": 22, "interf": 22, "transact": 22, "perpetu": 22, "But": 22, "neither": 22, "retain": 22, "abil": 22, "rom": 22, "servic": 22, "advers": 22, "affect": 22, "violat": 22, "rule": 22, "protocol": 22, "publicli": 22, "password": 22, "unpack": 22, "supplement": 22, "govern": 22, "regard": 22, "notwithstand": 22, "holder": 22, "liabil": 22, "misrepresent": 22, "licensor": 22, "declin": 22, "trademark": 22, "trade": 22, "indemnif": 22, "contractu": 22, "assumpt": 22, "impos": 22, "relicens": 22, "surviv": 22, "statement": 22, "expressli": 22, "void": 22, "paragraph": 22, "ceas": 22, "reinstat": 22, "provision": 22, "until": 22, "perman": 22, "notifi": 22, "cessat": 22, "moreov": 22, "cure": 22, "30": 22, "receipt": 22, "qualifi": 22, "Not": 22, "ancillari": 22, "consequ": 22, "likewis": 22, "noth": 22, "downstream": 22, "subject": 22, "complianc": 22, "entiti": 22, "asset": 22, "subdivid": 22, "merg": 22, "whatev": 22, "predecessor": 22, "had": 22, "effort": 22, "royalti": 22, "litig": 22, "cross": 22, "claim": 22, "counterclaim": 22, "lawsuit": 22, "alleg": 22, "sell": 22, "sale": 22, "contributor": 22, "acquir": 22, "worldwid": 22, "agreement": 22, "denomin": 22, "coven": 22, "sue": 22, "knowingli": 22, "readili": 22, "arrang": 22, "depriv": 22, "yourself": 22, "benefit": 22, "knowledg": 22, "believ": 22, "pursuant": 22, "procur": 22, "convey": 22, "discriminatori": 22, "busi": 22, "payment": 22, "primarili": 22, "28": 22, "march": 22, "constru": 22, "defens": 22, "court": 22, "contradict": 22, "excus": 22, "pertin": 22, "whom": 22, "refrain": 22, "13": 22, "affero": 22, "14": 22, "revis": 22, "Such": 22, "spirit": 22, "choos": 22, "ever": 22, "proxi": 22, "THERE": 22, "NO": 22, "THE": 22, "TO": 22, "BY": 22, "IN": 22, "OR": 22, "AS": 22, "OF": 22, "BUT": 22, "NOT": 22, "risk": 22, "qualiti": 22, "WITH": 22, "prove": 22, "defect": 22, "repair": 22, "event": 22, "WILL": 22, "BE": 22, "damag": 22, "incident": 22, "consequenti": 22, "inabl": 22, "loss": 22, "BEING": 22, "inaccur": 22, "sustain": 22, "IF": 22, "SUCH": 22, "17": 22, "review": 22, "waiver": 22, "civil": 22, "greatest": 22, "attach": 22, "safest": 22, "pointer": 22, "brief": 22, "www": 22, "contact": 22, "paper": 22, "mail": 22, "hypothet": 22, "gui": 22, "box": 22, "employ": 22, "programm": 22, "school": 22, "subroutin": 22, "lesser": 22, "lgpl": 22, "name_of_the_execut": 23, "dig": 23, "decomposit": 23, "energy_data": 23, "0x7fb15f425eb8": 23, "49586861429": 23, "42945116692": 23, "gather": 23, "scf_output": 23, "0x7fd37d6282b0": 23, "tailor": 23, "sens": 23, "punctual": 23, "mostli": 23, "top": 23, "resolut": 23, "ident": 23, "criteria": 23, "cc2": 23, "uhfmo_alpha": 23, "uhfmo_beta": 23}, "objects": {"": [[1, 0, 0, "-", "turbomoleio"]], "turbomoleio": [[2, 0, 0, "-", "core"], [4, 0, 0, "-", "input"], [7, 0, 0, "-", "output"], [9, 0, 0, "-", "testfiles"]], "turbomoleio.core": [[2, 0, 0, "-", "base"], [2, 0, 0, "-", "control"], [2, 0, 0, "-", "datagroups"], [2, 0, 0, "-", "molecule"], [2, 0, 0, "-", "periodic"], [2, 0, 0, "-", "symmetry"], [3, 0, 0, "-", "tests"], [2, 0, 0, "-", "utils"]], "turbomoleio.core.base": [[2, 1, 1, "", "BaseSystem"], [2, 3, 1, "", "get_coord_lines"], [2, 3, 1, "", "get_mol_and_indices_frozen"]], "turbomoleio.core.base.BaseSystem": [[2, 2, 1, "", "coord_lines"], [2, 2, 1, "", "to_coord_file"], [2, 2, 1, "", "to_coord_string"], [2, 2, 1, "", "to_file"]], "turbomoleio.core.control": [[2, 1, 1, "", "Control"], [2, 1, 1, "", "Defaults"], [2, 1, 1, "", "Energy"], [2, 1, 1, "", "Gradient"], [2, 1, 1, "", "Shells"], [2, 3, 1, "", "adg"], [2, 3, 1, "", "cdg"], [2, 3, 1, "", "cpc"], [2, 3, 1, "", "kdg"], [2, 3, 1, "", "mdgo"], [2, 3, 1, "", "sdg"], [2, 3, 1, "", "sdgo"]], "turbomoleio.core.control.Control": [[2, 2, 1, "", "add_cosmo"], [2, 2, 1, "", "cpc"], [2, 4, 1, "", "energy"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_metric"], [2, 2, 1, "", "get_charge"], [2, 2, 1, "", "get_shells"], [2, 2, 1, "", "get_subfiles_list"], [2, 4, 1, "", "gradient"], [2, 4, 1, "", "is_uhf"], [2, 2, 1, "", "remove_last_energy"], [2, 2, 1, "", "remove_last_gradient"], [2, 2, 1, "", "set_disp"], [2, 2, 1, "", "to_file"]], "turbomoleio.core.control.Defaults": [[2, 5, 1, "", "METRIC"]], "turbomoleio.core.control.Energy": [[2, 4, 1, "", "delta_e"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 4, 1, "", "n_steps"], [2, 2, 1, "", "plot"]], "turbomoleio.core.control.Gradient": [[2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 4, 1, "", "last_grad_max"], [2, 4, 1, "", "last_grad_norm"], [2, 4, 1, "", "max_gradients"], [2, 4, 1, "", "n_steps"], [2, 4, 1, "", "norms"], [2, 2, 1, "", "plot"]], "turbomoleio.core.control.Shells": [[2, 2, 1, "", "as_dict"], [2, 2, 1, "", "from_dict"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 4, 1, "", "irreps"], [2, 2, 1, "", "to_datagroup"], [2, 4, 1, "", "total_electrons"]], "turbomoleio.core.datagroups": [[2, 1, 1, "", "DataGroups"], [2, 3, 1, "", "cleanup_string"], [2, 3, 1, "", "compare_datagroup_string"], [2, 3, 1, "", "remove_comments"], [2, 3, 1, "", "remove_dg_from_list"], [2, 3, 1, "", "split_string_to_dg_list"]], "turbomoleio.core.datagroups.DataGroups": [[2, 2, 1, "", "add_data_group"], [2, 2, 1, "", "adg"], [2, 2, 1, "", "as_dict"], [2, 2, 1, "", "cdg"], [2, 2, 1, "", "change_data_group"], [2, 2, 1, "", "compare"], [2, 2, 1, "", "empty"], [2, 2, 1, "", "from_dict"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "kdg"], [2, 2, 1, "", "kill_data_group"], [2, 2, 1, "", "mdgo"], [2, 2, 1, "", "modify_data_group_options"], [2, 4, 1, "", "ndg"], [2, 4, 1, "", "number_of_data_groups"], [2, 2, 1, "", "sdg"], [2, 2, 1, "", "sdgo"], [2, 2, 1, "", "show_data_group"], [2, 2, 1, "", "show_data_group_option"], [2, 2, 1, "", "show_subfile_fname"], [2, 2, 1, "", "to_file"]], "turbomoleio.core.molecule": [[2, 1, 1, "", "BondAngle"], [2, 1, 1, "", "CollinearBendingAngle"], [2, 1, 1, "", "DihedralAngle"], [2, 1, 1, "", "Distance"], [2, 1, 1, "", "InternalDefinition"], [2, 1, 1, "", "InverseDistance"], [2, 1, 1, "", "MoleculeSystem"], [2, 1, 1, "", "OutOfPlaneAngle"], [2, 1, 1, "", "PerpendicularBendingAngle"]], "turbomoleio.core.molecule.BondAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.CollinearBendingAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.DihedralAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.Distance": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.InternalDefinition": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 2, 1, "", "from_string"], [2, 2, 1, "", "get_subclass_from_str"], [2, 2, 1, "", "is_valid"], [2, 5, 1, "", "n_atoms"], [2, 2, 1, "", "to_string"]], "turbomoleio.core.molecule.InverseDistance": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.MoleculeSystem": [[2, 2, 1, "", "add_bond_angle"], [2, 2, 1, "", "add_dihedral"], [2, 2, 1, "", "add_distance"], [2, 2, 1, "", "as_dict"], [2, 2, 1, "", "from_dict"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 2, 1, "", "get_int_def_inconsistencies"], [2, 2, 1, "", "has_inconsistencies"], [2, 4, 1, "", "molecule"], [2, 2, 1, "", "to_coord_string"]], "turbomoleio.core.molecule.OutOfPlaneAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.PerpendicularBendingAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.periodic": [[2, 1, 1, "", "PeriodicSystem"]], "turbomoleio.core.periodic.PeriodicSystem": [[2, 2, 1, "", "as_dict"], [2, 2, 1, "", "from_dict"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 4, 1, "", "structure"], [2, 2, 1, "", "to_coord_string"]], "turbomoleio.core.tests": [[3, 0, 0, "-", "test_control"], [3, 0, 0, "-", "test_datagroups"], [3, 0, 0, "-", "test_molecule"], [3, 0, 0, "-", "test_periodic"], [3, 0, 0, "-", "test_utils"]], "turbomoleio.core.tests.test_control": [[3, 1, 1, "", "TestControl"], [3, 1, 1, "", "TestDatagroupFunctions"], [3, 1, 1, "", "TestEnergy"], [3, 1, 1, "", "TestGradient"], [3, 1, 1, "", "TestShells"], [3, 3, 1, "", "check_equivalent_dg"]], "turbomoleio.core.tests.test_control.TestControl": [[3, 2, 1, "", "test_add_cosmo"], [3, 2, 1, "", "test_cpc"], [3, 2, 1, "", "test_disp"], [3, 2, 1, "", "test_energy"], [3, 2, 1, "", "test_from_file"], [3, 2, 1, "", "test_from_metric"], [3, 2, 1, "", "test_get_charge"], [3, 2, 1, "", "test_get_shells"], [3, 2, 1, "", "test_get_subfiles_list"], [3, 2, 1, "", "test_gradient"], [3, 2, 1, "", "test_is_uhf"], [3, 2, 1, "", "test_remove_energy"], [3, 2, 1, "", "test_remove_energy_in_control"], [3, 2, 1, "", "test_remove_gradient"], [3, 2, 1, "", "test_remove_gradient_in_control"]], "turbomoleio.core.tests.test_control.TestDatagroupFunctions": [[3, 5, 1, "", "pytestmark"], [3, 2, 1, "", "test_adg"], [3, 2, 1, "", "test_cdg"], [3, 2, 1, "", "test_cpc"], [3, 2, 1, "", "test_kdg"], [3, 2, 1, "", "test_mdgo"], [3, 2, 1, "", "test_sdg"], [3, 2, 1, "", "test_sdgo"]], "turbomoleio.core.tests.test_control.TestEnergy": [[3, 2, 1, "", "test_energy_mp2"], [3, 2, 1, "", "test_energy_scf"]], "turbomoleio.core.tests.test_control.TestGradient": [[3, 2, 1, "", "test_empty_gradient"], [3, 2, 1, "", "test_fail_parsing"], [3, 2, 1, "", "test_gradient"], [3, 2, 1, "", "test_periodic"]], "turbomoleio.core.tests.test_control.TestShells": [[3, 2, 1, "", "test_closed"], [3, 2, 1, "", "test_fail_parse"], [3, 2, 1, "", "test_fractional"], [3, 2, 1, "", "test_uhf"]], "turbomoleio.core.tests.test_datagroups": [[3, 3, 1, "", "test_cleanup"], [3, 3, 1, "", "test_compare"], [3, 3, 1, "", "test_compare_datagroup_string"], [3, 3, 1, "", "test_datagroups"], [3, 3, 1, "", "test_empty"], [3, 3, 1, "", "test_modify_data_group_options"], [3, 3, 1, "", "test_remove_comments"], [3, 3, 1, "", "test_remove_dg_from_list"], [3, 3, 1, "", "test_sdg_subfiles"], [3, 3, 1, "", "test_show_data_group_option"], [3, 3, 1, "", "test_show_subfile_fname"], [3, 3, 1, "", "test_split_string_to_dg_list"]], "turbomoleio.core.tests.test_molecule": [[3, 1, 1, "", "TestInternalDefinition"], [3, 1, 1, "", "TestMoleculeSystem"], [3, 3, 1, "", "check_dg"], [3, 3, 1, "", "check_user_defined_bonds_dg"]], "turbomoleio.core.tests.test_molecule.TestInternalDefinition": [[3, 5, 1, "", "pytestmark"], [3, 2, 1, "", "test_bond_angle"], [3, 2, 1, "", "test_collinear_bending_angle"], [3, 2, 1, "", "test_dihedral_angle"], [3, 2, 1, "", "test_distance"], [3, 2, 1, "", "test_from_string"], [3, 2, 1, "", "test_inverse_distance"], [3, 2, 1, "", "test_out_of_plane_angle"], [3, 2, 1, "", "test_perpendicular_bending_angle"]], "turbomoleio.core.tests.test_molecule.TestMoleculeSystem": [[3, 2, 1, "", "test_add_bond_angle"], [3, 2, 1, "", "test_add_dihedral"], [3, 2, 1, "", "test_add_distance"], [3, 2, 1, "", "test_check_index"], [3, 2, 1, "", "test_disordered"], [3, 2, 1, "", "test_dummy_atoms"], [3, 2, 1, "", "test_from_string"], [3, 2, 1, "", "test_to_coord_string"], [3, 2, 1, "", "test_to_file"]], "turbomoleio.core.tests.test_periodic": [[3, 1, 1, "", "TestPeriodicSystem"]], "turbomoleio.core.tests.test_periodic.TestPeriodicSystem": [[3, 2, 1, "", "test_periodic_2d"], [3, 2, 1, "", "test_periodic_3d"], [3, 2, 1, "", "test_periodic_wrong_rotation"], [3, 2, 1, "", "test_read_periodic_2d"]], "turbomoleio.core.tests.test_utils": [[3, 1, 1, "", "TestGetVersion"]], "turbomoleio.core.tests.test_utils.TestGetVersion": [[3, 2, 1, "", "test_V72"], [3, 2, 1, "", "test_V731"], [3, 2, 1, "", "test_V741"], [3, 2, 1, "", "test_V751"]], "turbomoleio.core.utils": [[2, 3, 1, "", "define_quit"], [2, 3, 1, "", "get_tm_version"]], "turbomoleio.input": [[4, 0, 0, "-", "define"], [5, 0, 0, "-", "templates"], [6, 0, 0, "-", "tests"], [4, 0, 0, "-", "utils"]], "turbomoleio.input.define": [[4, 6, 1, "", "DefineError"], [4, 6, 1, "", "DefineExpectError"], [4, 6, 1, "", "DefineIredError"], [4, 6, 1, "", "DefineParameterError"], [4, 1, 1, "", "DefineRunner"], [4, 6, 1, "", "UnsupportedDefineStateError"]], "turbomoleio.input.define.DefineRunner": [[4, 2, 1, "", "dump_command_file"], [4, 2, 1, "", "run_full"], [4, 2, 1, "", "run_generate_mo_files"], [4, 2, 1, "", "run_update_internal_coords"]], "turbomoleio.input.tests": [[6, 0, 0, "-", "test_define"], [6, 0, 0, "-", "test_utils"]], "turbomoleio.input.tests.test_define": [[6, 1, 1, "", "TestDefineRunner"], [6, 1, 1, "", "TestExceptions"], [6, 3, 1, "", "dr_data"]], "turbomoleio.input.tests.test_define.TestDefineRunner": [[6, 2, 1, "", "assert_sendline_calls"], [6, 2, 1, "", "assert_sendline_has_calls"], [6, 2, 1, "", "test_add_atomic_coordinates_from_file"], [6, 2, 1, "", "test_add_atomic_coordinates_from_file_cartesian"], [6, 2, 1, "", "test_add_cosmo"], [6, 2, 1, "", "test_close"], [6, 2, 1, "", "test_copy_mo_files_ab_mos"], [6, 2, 1, "", "test_copy_mo_files_alpha_beta"], [6, 2, 1, "", "test_copy_mo_files_error"], [6, 2, 1, "", "test_copy_mo_files_mo"], [6, 2, 1, "", "test_define_basis_sets"], [6, 2, 1, "", "test_define_core_potentials"], [6, 2, 1, "", "test_define_symmetry"], [6, 2, 1, "", "test_define_symmetry_error"], [6, 2, 1, "", "test_determine_symmetry"], [6, 2, 1, "", "test_determine_symmetry_eps"], [6, 2, 1, "", "test_dump_command_file"], [6, 2, 1, "", "test_excited_state_menu_error_not_activated"], [6, 2, 1, "", "test_excited_state_menu_frequency"], [6, 2, 1, "", "test_excited_state_menu_irrep"], [6, 2, 1, "", "test_excited_state_menu_irrep_wrong_sym"], [6, 2, 1, "", "test_excited_state_menu_polly"], [6, 2, 1, "", "test_excited_state_menu_rpas"], [6, 2, 1, "", "test_excited_state_menu_urpa"], [6, 2, 1, "", "test_excited_state_menu_urpa_error"], [6, 2, 1, "", "test_excited_state_menu_wrong_ex_method"], [6, 2, 1, "", "test_excited_state_menu_wrong_menu"], [6, 2, 1, "", "test_existing_coordinates"], [6, 2, 1, "", "test_existing_coordinates_cartesian"], [6, 2, 1, "", "test_existing_coordinates_error"], [6, 2, 1, "", "test_existing_coordinates_no_update"], [6, 2, 1, "", "test_existing_coordinates_unsupported"], [6, 2, 1, "", "test_expect"], [6, 2, 1, "", "test_expect_raise_eof"], [6, 2, 1, "", "test_expect_raise_timeout"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_charge"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_default"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_error"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_nocharge"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_unpaired"], [6, 2, 1, "", "test_general_menu_ccsdt"], [6, 2, 1, "", "test_general_menu_dft"], [6, 2, 1, "", "test_general_menu_hf"], [6, 2, 1, "", "test_general_menu_wrong_method"], [6, 2, 1, "", "test_generate_internal_coordinates"], [6, 2, 1, "", "test_generate_internal_coordinates_error"], [6, 2, 1, "", "test_geometry_menu_copymo"], [6, 2, 1, "", "test_geometry_menu_incompatibility_1"], [6, 2, 1, "", "test_geometry_menu_incompatibility_2"], [6, 2, 1, "", "test_geometry_menu_new_coords_1"], [6, 2, 1, "", "test_geometry_menu_new_coords_2"], [6, 2, 1, "", "test_geometry_menu_new_coords_3"], [6, 2, 1, "", "test_geometry_menu_new_coords_4"], [6, 2, 1, "", "test_geometry_menu_no_new_coords"], [6, 2, 1, "", "test_get_bin_path"], [6, 2, 1, "", "test_go_to_general_menu"], [6, 2, 1, "", "test_init"], [6, 2, 1, "", "test_initialize_control_1"], [6, 2, 1, "", "test_initialize_control_2"], [6, 2, 1, "", "test_initialize_control_incompatibility"], [6, 2, 1, "", "test_is_alive"], [6, 2, 1, "", "test_postprocess"], [6, 2, 1, "", "test_quit_general_menu"], [6, 2, 1, "", "test_run_full_1"], [6, 2, 1, "", "test_run_full_2"], [6, 2, 1, "", "test_run_generate_mo_files"], [6, 2, 1, "", "test_run_generate_mo_files_sym"], [6, 2, 1, "", "test_run_update_internal_coords"], [6, 2, 1, "", "test_run_update_internal_coords_error"], [6, 2, 1, "", "test_sendline"], [6, 2, 1, "", "test_set_basis"], [6, 2, 1, "", "test_set_basis_error"], [6, 2, 1, "", "test_set_basis_error_2"], [6, 2, 1, "", "test_set_basis_error_3"], [6, 2, 1, "", "test_set_dft_options_no_dft"], [6, 2, 1, "", "test_set_dft_options_use_dft"], [6, 2, 1, "", "test_set_dft_options_wrong_xc"], [6, 2, 1, "", "test_set_ecp_error"], [6, 2, 1, "", "test_set_ecp_error_2"], [6, 2, 1, "", "test_set_ecp_error_3"], [6, 2, 1, "", "test_set_metric"], [6, 2, 1, "", "test_set_mo_from_control_file"], [6, 2, 1, "", "test_set_mo_from_control_file_2"], [6, 2, 1, "", "test_set_mo_from_control_file_error"], [6, 2, 1, "", "test_set_mo_from_control_file_longpath"], [6, 2, 1, "", "test_set_mp2_options"], [6, 2, 1, "", "test_set_mp2_options_f12"], [6, 2, 1, "", "test_set_mp2_options_geoopt"], [6, 2, 1, "", "test_set_mp2_options_mp2"], [6, 2, 1, "", "test_set_mp2_options_mp2_error"], [6, 2, 1, "", "test_set_ri_state"], [6, 2, 1, "", "test_set_ri_state_marij"], [6, 2, 1, "", "test_set_scf_options"], [6, 2, 1, "", "test_skip_atomic_attribute_menu"], [6, 2, 1, "", "test_skip_atomic_attribute_menu_error"], [6, 2, 1, "", "test_skip_atomic_attribute_menu_internal"], [6, 2, 1, "", "test_switch_to_atomic_attribute_menu"], [6, 2, 1, "", "test_switch_to_atomic_attribute_menu_internal"], [6, 2, 1, "", "test_switch_to_atomic_attribute_menu_internal_error"], [6, 2, 1, "", "test_switch_to_molecular_orbital_definition_menu"], [6, 2, 1, "", "test_switch_to_scf_menu"]], "turbomoleio.input.tests.test_define.TestExceptions": [[6, 2, 1, "", "test_create"]], "turbomoleio.input.tests.test_utils": [[6, 3, 1, "", "test_get_define_template"], [6, 3, 1, "", "test_validate_parameters"]], "turbomoleio.input.utils": [[4, 6, 1, "", "ParametersValidationError"], [4, 3, 1, "", "ex_setter"], [4, 3, 1, "", "get_define_template"], [4, 7, 1, "", "schema_define_params"], [4, 3, 1, "", "validate_parameters"]], "turbomoleio.output": [[7, 0, 0, "-", "data"], [7, 0, 0, "-", "files"], [7, 0, 0, "-", "parser"], [7, 0, 0, "-", "states"], [8, 0, 0, "-", "tests"]], "turbomoleio.output.data": [[7, 1, 1, "", "AoforceNumericalIntegrationData"], [7, 1, 1, "", "AoforceRotationalData"], [7, 1, 1, "", "AoforceVibrationalData"], [7, 1, 1, "", "BaseData"], [7, 1, 1, "", "BasisData"], [7, 1, 1, "", "CosmoData"], [7, 1, 1, "", "DFTData"], [7, 1, 1, "", "DispersionCorrectionData"], [7, 1, 1, "", "ElectrostaticMomentsData"], [7, 1, 1, "", "EscfData"], [7, 1, 1, "", "EscfIterationData"], [7, 1, 1, "", "FunctionalData"], [7, 1, 1, "", "GeometryData"], [7, 1, 1, "", "IntegralData"], [7, 1, 1, "", "MP2Data"], [7, 1, 1, "", "MP2Results"], [7, 1, 1, "", "PeriodicityData"], [7, 1, 1, "", "RelaxConvergenceData"], [7, 1, 1, "", "RelaxData"], [7, 1, 1, "", "RelaxGradientsData"], [7, 1, 1, "", "RiData"], [7, 1, 1, "", "RunData"], [7, 1, 1, "", "ScfData"], [7, 1, 1, "", "ScfEnergiesData"], [7, 1, 1, "", "ScfIterationData"], [7, 1, 1, "", "SingleExcitation"], [7, 1, 1, "", "SmearingData"], [7, 1, 1, "", "SpinData"], [7, 1, 1, "", "StatptData"], [7, 1, 1, "", "SymmetryData"], [7, 1, 1, "", "TurbomoleData"]], "turbomoleio.output.data.AoforceNumericalIntegrationData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.AoforceRotationalData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.AoforceVibrationalData": [[7, 2, 1, "", "from_parser"], [7, 2, 1, "", "get_freqs_df"], [7, 2, 1, "", "n_negative_freqs"], [7, 2, 1, "", "n_positive_freqs"], [7, 2, 1, "", "n_zero_freqs"]], "turbomoleio.output.data.BaseData": [[7, 2, 1, "", "from_file"], [7, 2, 1, "", "from_parser"], [7, 2, 1, "", "from_string"]], "turbomoleio.output.data.BasisData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.CosmoData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.DFTData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.DispersionCorrectionData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.ElectrostaticMomentsData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.EscfData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.EscfIterationData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.FunctionalData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.GeometryData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.IntegralData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.MP2Data": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.MP2Results": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.PeriodicityData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RelaxConvergenceData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RelaxData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RelaxGradientsData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RiData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RunData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.ScfData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.ScfEnergiesData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.ScfIterationData": [[7, 2, 1, "", "from_parser"], [7, 2, 1, "", "plot_energies"]], "turbomoleio.output.data.SmearingData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.SpinData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.StatptData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.SymmetryData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.TurbomoleData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files": [[7, 1, 1, "", "AoforceOutput"], [7, 1, 1, "", "EgradOutput"], [7, 1, 1, "", "EscfOnlyOutput"], [7, 1, 1, "", "EscfOutput"], [7, 1, 1, "", "GradOutput"], [7, 1, 1, "", "JobexOutput"], [7, 1, 1, "", "MP2Output"], [7, 1, 1, "", "RelaxOutput"], [7, 1, 1, "", "Ricc2Output"], [7, 1, 1, "", "ScfOutput"], [7, 1, 1, "", "StatptOutput"]], "turbomoleio.output.files.AoforceOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.EgradOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.EscfOnlyOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.EscfOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.GradOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.JobexOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.MP2Output": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.RelaxOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.Ricc2Output": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.ScfOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.StatptOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.parser": [[7, 1, 1, "", "Parser"], [7, 3, 1, "", "convert_float"], [7, 3, 1, "", "convert_int"], [7, 3, 1, "", "convert_time_string"]], "turbomoleio.output.parser.Parser": [[7, 2, 1, "", "all_done"], [7, 2, 1, "", "aoforce_analysis"], [7, 2, 1, "", "aoforce_numerical_integration"], [7, 2, 1, "", "basis"], [7, 2, 1, "", "centers"], [7, 2, 1, "", "coordinates"], [7, 2, 1, "", "cosmo_header"], [7, 2, 1, "", "cosmo_results"], [7, 2, 1, "", "density_functional_data"], [7, 2, 1, "", "dftd"], [7, 2, 1, "", "egrad_excited_state"], [7, 2, 1, "", "electrostatic_moments"], [7, 2, 1, "", "escf_excitations"], [7, 2, 1, "", "escf_gs_total_en"], [7, 2, 1, "", "escf_iterations"], [7, 2, 1, "", "fermi"], [7, 2, 1, "", "from_file"], [7, 2, 1, "", "get_split_jobex_parsers"], [7, 2, 1, "", "get_value"], [7, 2, 1, "", "gradient"], [7, 2, 1, "", "grep_line"], [7, 2, 1, "", "header"], [7, 2, 1, "", "integral"], [7, 2, 1, "", "is_uhf"], [7, 2, 1, "", "mp2_data"], [7, 2, 1, "", "mp2_results"], [7, 2, 1, "", "periodicity_data"], [7, 2, 1, "", "pre_escf_run"], [7, 2, 1, "", "pre_scf_run"], [7, 2, 1, "", "rdgrad_memory"], [7, 2, 1, "", "relax_conv_info"], [7, 2, 1, "", "relax_gradient_values"], [7, 2, 1, "", "relax_info"], [7, 2, 1, "", "rij_info"], [7, 2, 1, "", "riper_scf_energies"], [7, 2, 1, "", "s2"], [7, 2, 1, "", "scf_energies"], [7, 2, 1, "", "scf_iterations"], [7, 2, 1, "", "statpt_info"], [7, 4, 1, "", "string"], [7, 2, 1, "", "symmetry"], [7, 2, 1, "", "timings"]], "turbomoleio.output.states": [[7, 1, 1, "", "EigerOutput"], [7, 1, 1, "", "EigerRunner"], [7, 1, 1, "", "State"], [7, 1, 1, "", "States"], [7, 3, 1, "", "get_mos_energies"]], "turbomoleio.output.states.EigerOutput": [[7, 2, 1, "", "compare_states"], [7, 2, 1, "", "from_file"], [7, 2, 1, "", "from_string"]], "turbomoleio.output.states.EigerRunner": [[7, 2, 1, "", "get_eiger_output"], [7, 2, 1, "", "run"], [7, 2, 1, "", "to_file"]], "turbomoleio.output.states.State": [[7, 2, 1, "", "as_dict"], [7, 2, 1, "", "from_dict"], [7, 4, 1, "", "has_fractional_occ"], [7, 4, 1, "", "max_occupation"]], "turbomoleio.output.states.States": [[7, 2, 1, "", "as_dict"], [7, 4, 1, "", "eigenvalues"], [7, 2, 1, "", "filter_states"], [7, 2, 1, "", "from_file"], [7, 4, 1, "", "gap"], [7, 2, 1, "", "generate_lowest_filled_states"], [7, 2, 1, "", "get_shells"], [7, 4, 1, "", "has_fractional_occ"], [7, 4, 1, "", "has_hole"], [7, 4, 1, "", "homo"], [7, 4, 1, "", "homo_index"], [7, 2, 1, "", "insert"], [7, 4, 1, "", "irrep_indices"], [7, 4, 1, "", "irreps"], [7, 4, 1, "", "is_uhf"], [7, 4, 1, "", "lumo"], [7, 4, 1, "", "lumo_index"], [7, 4, 1, "", "n_states"], [7, 4, 1, "", "occupations"], [7, 4, 1, "", "spins"], [7, 4, 1, "", "total_electrons"]], "turbomoleio.output.tests": [[8, 0, 0, "-", "test_data"], [8, 0, 0, "-", "test_files"], [8, 0, 0, "-", "test_parser"], [8, 0, 0, "-", "test_states"]], "turbomoleio.output.tests.test_data": [[8, 3, 1, "", "test_AoforceVibrationalData"], [8, 3, 1, "", "test_ScfIterationData"], [8, 3, 1, "", "test_str"]], "turbomoleio.output.tests.test_files": [[8, 1, 1, "", "TestFiles"], [8, 3, 1, "", "cls_dict_path"], [8, 3, 1, "", "generate_files"]], "turbomoleio.output.tests.test_files.TestFiles": [[8, 2, 1, "", "test_properties"]], "turbomoleio.output.tests.test_parser": [[8, 1, 1, "", "TestFunctions"], [8, 1, 1, "", "TestParser"], [8, 3, 1, "", "generate_files"], [8, 3, 1, "", "method"], [8, 3, 1, "", "parser_and_dict"]], "turbomoleio.output.tests.test_parser.TestFunctions": [[8, 2, 1, "", "test_convert_float"], [8, 2, 1, "", "test_convert_int"], [8, 2, 1, "", "test_convert_time_string"]], "turbomoleio.output.tests.test_parser.TestParser": [[8, 2, 1, "", "test_fail_all_done_check"], [8, 2, 1, "", "test_get_split_jobex_parsers"], [8, 2, 1, "", "test_get_value"], [8, 2, 1, "", "test_grep_line"], [8, 2, 1, "", "test_properties"]], "turbomoleio.output.tests.test_states": [[8, 3, 1, "", "test_closed"], [8, 3, 1, "", "test_eiger_runner"], [8, 3, 1, "", "test_error_homo"], [8, 3, 1, "", "test_hole"], [8, 3, 1, "", "test_no_empty_states"], [8, 3, 1, "", "test_parsing_failures"], [8, 3, 1, "", "test_state"], [8, 3, 1, "", "test_uhf"]], "turbomoleio.testfiles": [[9, 0, 0, "-", "utils"]], "turbomoleio.testfiles.utils": [[9, 1, 1, "", "ItestConfig"], [9, 6, 1, "", "ItestError"], [9, 3, 1, "", "assert_MSONable"], [9, 3, 1, "", "assert_almost_equal"], [9, 3, 1, "", "compare_differences"], [9, 3, 1, "", "generate_control_for_test"], [9, 3, 1, "", "generate_reference_out_parser_files"], [9, 3, 1, "", "generate_reference_output"], [9, 3, 1, "", "get_control_filepath"], [9, 3, 1, "", "get_control_integration"], [9, 3, 1, "", "get_sp"], [9, 3, 1, "", "get_tfp"], [9, 3, 1, "", "gisnan"], [9, 3, 1, "", "has_matplotlib"], [9, 3, 1, "", "run_itest"], [9, 3, 1, "", "temp_dir"], [9, 3, 1, "", "touch_file"]], "turbomoleio.testfiles.utils.ItestConfig": [[9, 5, 1, "", "define_timeout"], [9, 5, 1, "", "delete_tmp_dir"], [9, 5, 1, "", "dryrun"], [9, 5, 1, "", "dryrun_fpath"], [9, 5, 1, "", "dryrun_use_ref_control"], [9, 5, 1, "", "generate_ref"], [9, 5, 1, "", "tol"]]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:function", "4": "py:property", "5": "py:attribute", "6": "py:exception", "7": "py:data"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"], "4": ["py", "property", "Python property"], "5": ["py", "attribute", "Python attribute"], "6": ["py", "exception", "Python exception"], "7": ["py", "data", "Python data"]}, "titleterms": {"turbomoleio": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 21], "packag": [1, 2, 3, 4, 5, 6, 7, 8, 9], "subpackag": [1, 2, 4, 7], "modul": [1, 2, 3, 4, 5, 6, 7, 8, 9], "content": [1, 2, 3, 4, 5, 6, 7, 8, 9], "core": [2, 3], "submodul": [2, 3, 4, 6, 7, 8, 9], "base": 2, "control": [2, 14], "datagroup": [2, 14], "molecul": 2, "period": [2, 13], "symmetri": 2, "util": [2, 4, 9], "test": [3, 6, 8, 12, 16, 18, 19], "test_control": 3, "test_datagroup": 3, "test_molecul": 3, "test_period": 3, "test_util": [3, 6], "input": [4, 5, 6], "defin": [4, 15, 16], "templat": 5, "test_defin": 6, "output": [7, 8, 18, 19, 23], "data": [7, 14, 23], "file": [7, 13, 14, 23], "parser": 7, "state": [7, 23], "test_data": 8, "test_fil": 8, "test_pars": 8, "test_stat": 8, "testfil": 9, "appendix": 10, "report": 11, "bug": [11, 12], "changelog": 12, "releas": 12, "1": 12, "3": 12, "0": 12, "feb": 12, "24": 12, "2022": 12, "develop": [12, 21], "chang": [12, 19], "2": 12, "16": 12, "15": 12, "featur": 12, "ad": 12, "sep": 12, "20": 12, "2021": 12, "fix": 12, "mar": 12, "11": 12, "The": [13, 14, 15, 19, 23], "coord": 13, "system": 13, "group": 14, "object": [14, 23], "access": 14, "valu": 14, "modifi": 14, "run": 15, "definerunn": 15, "paramet": 15, "valid": [15, 16], "runner": 16, "contribut": [17, 21], "log": [18, 23], "pars": [18, 19, 23], "new": [18, 19], "quantiti": 18, "type": 18, "suit": 19, "unit": 19, "integr": 19, "write": 19, "turbomol": 19, "version": [19, 20], "standard": 19, "procedur": 19, "backward": 20, "compat": 20, "user": 21, "guid": 21, "addit": 21, "inform": 21, "indic": 21, "tabl": 21, "licens": 22, "quick": 23, "start": 23, "overal": 23, "structur": 23, "common": 23}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "sphinx": 58}, "alltitles": {"turbomoleio": [[0, "turbomoleio"], [21, "turbomoleio"]], "turbomoleio package": [[1, "turbomoleio-package"]], "Subpackages": [[1, "subpackages"], [2, "subpackages"], [4, "subpackages"], [7, "subpackages"]], "Module contents": [[1, "module-turbomoleio"], [2, "module-turbomoleio.core"], [3, "module-turbomoleio.core.tests"], [4, "module-turbomoleio.input"], [5, "module-turbomoleio.input.templates"], [6, "module-turbomoleio.input.tests"], [7, "module-turbomoleio.output"], [8, "module-turbomoleio.output.tests"], [9, "module-turbomoleio.testfiles"]], "turbomoleio.core package": [[2, "turbomoleio-core-package"]], "Submodules": [[2, "submodules"], [3, "submodules"], [4, "submodules"], [6, "submodules"], [7, "submodules"], [8, "submodules"], [9, "submodules"]], "turbomoleio.core.base module": [[2, "module-turbomoleio.core.base"]], "turbomoleio.core.control module": [[2, "module-turbomoleio.core.control"]], "turbomoleio.core.datagroups module": [[2, "module-turbomoleio.core.datagroups"]], "turbomoleio.core.molecule module": [[2, "module-turbomoleio.core.molecule"]], "turbomoleio.core.periodic module": [[2, "module-turbomoleio.core.periodic"]], "turbomoleio.core.symmetry module": [[2, "module-turbomoleio.core.symmetry"]], "turbomoleio.core.utils module": [[2, "module-turbomoleio.core.utils"]], "turbomoleio.core.tests package": [[3, "turbomoleio-core-tests-package"]], "turbomoleio.core.tests.test_control module": [[3, "module-turbomoleio.core.tests.test_control"]], "turbomoleio.core.tests.test_datagroups module": [[3, "module-turbomoleio.core.tests.test_datagroups"]], "turbomoleio.core.tests.test_molecule module": [[3, "module-turbomoleio.core.tests.test_molecule"]], "turbomoleio.core.tests.test_periodic module": [[3, "module-turbomoleio.core.tests.test_periodic"]], "turbomoleio.core.tests.test_utils module": [[3, "module-turbomoleio.core.tests.test_utils"]], "turbomoleio.input package": [[4, "turbomoleio-input-package"]], "turbomoleio.input.define module": [[4, "module-turbomoleio.input.define"]], "turbomoleio.input.utils module": [[4, "module-turbomoleio.input.utils"]], "turbomoleio.input.templates package": [[5, "turbomoleio-input-templates-package"]], "turbomoleio.input.tests package": [[6, "turbomoleio-input-tests-package"]], "turbomoleio.input.tests.test_define module": [[6, "module-turbomoleio.input.tests.test_define"]], "turbomoleio.input.tests.test_utils module": [[6, "module-turbomoleio.input.tests.test_utils"]], "turbomoleio.output package": [[7, "turbomoleio-output-package"]], "turbomoleio.output.data module": [[7, "module-turbomoleio.output.data"]], "turbomoleio.output.files module": [[7, "module-turbomoleio.output.files"]], "turbomoleio.output.parser module": [[7, "module-turbomoleio.output.parser"]], "turbomoleio.output.states module": [[7, "module-turbomoleio.output.states"]], "turbomoleio.output.tests package": [[8, "turbomoleio-output-tests-package"]], "turbomoleio.output.tests.test_data module": [[8, "module-turbomoleio.output.tests.test_data"]], "turbomoleio.output.tests.test_files module": [[8, "module-turbomoleio.output.tests.test_files"]], "turbomoleio.output.tests.test_parser module": [[8, "module-turbomoleio.output.tests.test_parser"]], "turbomoleio.output.tests.test_states module": [[8, "module-turbomoleio.output.tests.test_states"]], "turbomoleio.testfiles package": [[9, "turbomoleio-testfiles-package"]], "turbomoleio.testfiles.utils module": [[9, "module-turbomoleio.testfiles.utils"]], "Appendix": [[10, "appendix"]], "Reporting bugs": [[11, "reporting-bugs"]], "Changelog": [[12, "changelog"]], "Release 1.3.0 (Feb 24, 2022)": [[12, "release-1-3-0-feb-24-2022"]], "Developer changes": [[12, "developer-changes"]], "Release 1.2.0 (Feb 16, 2022)": [[12, "release-1-2-0-feb-16-2022"]], "Release 1.1.1 (Feb 15, 2022)": [[12, "release-1-1-1-feb-15-2022"]], "Features added": [[12, "features-added"], [12, "id1"]], "Release 1.1.0 (Sep 20, 2021)": [[12, "release-1-1-0-sep-20-2021"]], "Bug fixing": [[12, "bug-fixing"]], "Testing and development": [[12, "testing-and-development"]], "Release 1.0.0 (Mar 11, 2021)": [[12, "release-1-0-0-mar-11-2021"]], "The coord file": [[13, "the-coord-file"]], "Periodic systems": [[13, "periodic-systems"]], "The data group files": [[14, "the-data-group-files"]], "The DataGroups object": [[14, "the-datagroups-object"]], "Accessing a data group value": [[14, "accessing-a-data-group-value"]], "Modifying a data group value": [[14, "modifying-a-data-group-value"]], "The Control object": [[14, "the-control-object"]], "Running define": [[15, "running-define"]], "The DefineRunner parameters": [[15, "the-definerunner-parameters"]], "Validation": [[15, "validation"], [16, "validation"]], "Define runner": [[16, "define-runner"]], "Tests": [[16, "tests"], [18, "tests"]], "Contributing": [[17, "contributing"]], "Output logs parsing": [[18, "output-logs-parsing"]], "Parsing a new quantity": [[18, "parsing-a-new-quantity"]], "Parsing a new type of log": [[18, "parsing-a-new-type-of-log"]], "Testing": [[19, "testing"]], "The test suite": [[19, "the-test-suite"]], "Unit tests": [[19, "unit-tests"]], "Integration tests": [[19, "integration-tests"], [19, "id1"]], "Writing new tests": [[19, "writing-new-tests"]], "Tests for output parsing": [[19, "tests-for-output-parsing"]], "Turbomole version change": [[19, "turbomole-version-change"]], "Standard procedure": [[19, "standard-procedure"]], "Unit-tests for output parsing": [[19, "unit-tests-for-output-parsing"]], "Versioning": [[20, "versioning"]], "Backward-compatibility": [[20, "backward-compatibility"]], "User guide": [[21, null]], "Contributing to turbomoleio": [[21, "contributing-to-turbomoleio"]], "Developer guide": [[21, null]], "Additional information": [[21, "additional-information"], [21, null]], "Indices and tables": [[21, "indices-and-tables"]], "License": [[22, "license"]], "Outputs parsing": [[23, "outputs-parsing"]], "The log files": [[23, "the-log-files"]], "Quick Start": [[23, "quick-start"]], "Overall Structure": [[23, "overall-structure"]], "Data and File Objects": [[23, "data-and-file-objects"]], "Common data objects": [[23, "common-data-objects"]], "File data objects": [[23, "file-data-objects"]], "The States object": [[23, "the-states-object"]]}, "indexentries": {"module": [[1, "module-turbomoleio"], [2, "module-turbomoleio.core"], [2, "module-turbomoleio.core.base"], [2, "module-turbomoleio.core.control"], [2, "module-turbomoleio.core.datagroups"], [2, "module-turbomoleio.core.molecule"], [2, "module-turbomoleio.core.periodic"], [2, "module-turbomoleio.core.symmetry"], [2, "module-turbomoleio.core.utils"], [3, "module-turbomoleio.core.tests"], [3, "module-turbomoleio.core.tests.test_control"], [3, "module-turbomoleio.core.tests.test_datagroups"], [3, "module-turbomoleio.core.tests.test_molecule"], [3, "module-turbomoleio.core.tests.test_periodic"], [3, "module-turbomoleio.core.tests.test_utils"], [4, "module-turbomoleio.input"], [4, "module-turbomoleio.input.define"], [4, "module-turbomoleio.input.utils"], [5, "module-turbomoleio.input.templates"], [6, "module-turbomoleio.input.tests"], [6, "module-turbomoleio.input.tests.test_define"], [6, "module-turbomoleio.input.tests.test_utils"], [7, "module-turbomoleio.output"], [7, "module-turbomoleio.output.data"], [7, "module-turbomoleio.output.files"], [7, "module-turbomoleio.output.parser"], [7, "module-turbomoleio.output.states"], [8, "module-turbomoleio.output.tests"], [8, "module-turbomoleio.output.tests.test_data"], [8, "module-turbomoleio.output.tests.test_files"], [8, "module-turbomoleio.output.tests.test_parser"], [8, "module-turbomoleio.output.tests.test_states"], [9, "module-turbomoleio.testfiles"], [9, "module-turbomoleio.testfiles.utils"]], "turbomoleio": [[1, "module-turbomoleio"]], "basesystem (class in turbomoleio.core.base)": [[2, "turbomoleio.core.base.BaseSystem"]], "bondangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.BondAngle"]], "collinearbendingangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle"]], "control (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Control"]], "datagroups (class in turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.DataGroups"]], "defaults (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Defaults"]], "dihedralangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.DihedralAngle"]], "distance (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.Distance"]], "energy (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Energy"]], "gradient (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Gradient"]], "internaldefinition (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.InternalDefinition"]], "inversedistance (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.InverseDistance"]], "metric (turbomoleio.core.control.defaults attribute)": [[2, "turbomoleio.core.control.Defaults.METRIC"]], "moleculesystem (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.MoleculeSystem"]], "outofplaneangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle"]], "periodicsystem (class in turbomoleio.core.periodic)": [[2, "turbomoleio.core.periodic.PeriodicSystem"]], "perpendicularbendingangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle"]], "shells (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Shells"]], "add_bond_angle() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.add_bond_angle"]], "add_cosmo() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.add_cosmo"]], "add_data_group() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.add_data_group"]], "add_dihedral() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.add_dihedral"]], "add_distance() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.add_distance"]], "adg() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.adg"]], "adg() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.adg"]], "as_dict() (turbomoleio.core.control.shells method)": [[2, "turbomoleio.core.control.Shells.as_dict"]], "as_dict() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.as_dict"]], "as_dict() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.as_dict"]], "as_dict() (turbomoleio.core.periodic.periodicsystem method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.as_dict"]], "cdg() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.cdg"]], "cdg() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.cdg"]], "change_data_group() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.change_data_group"]], "cleanup_string() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.cleanup_string"]], "compare() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.compare"]], "compare_datagroup_string() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.compare_datagroup_string"]], "compute_value() (turbomoleio.core.molecule.bondangle method)": [[2, "turbomoleio.core.molecule.BondAngle.compute_value"]], "compute_value() (turbomoleio.core.molecule.collinearbendingangle method)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle.compute_value"]], "compute_value() (turbomoleio.core.molecule.dihedralangle method)": [[2, "turbomoleio.core.molecule.DihedralAngle.compute_value"]], "compute_value() (turbomoleio.core.molecule.distance method)": [[2, "turbomoleio.core.molecule.Distance.compute_value"]], "compute_value() (turbomoleio.core.molecule.internaldefinition method)": [[2, "turbomoleio.core.molecule.InternalDefinition.compute_value"]], "compute_value() (turbomoleio.core.molecule.inversedistance method)": [[2, "turbomoleio.core.molecule.InverseDistance.compute_value"]], "compute_value() (turbomoleio.core.molecule.outofplaneangle method)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle.compute_value"]], "compute_value() (turbomoleio.core.molecule.perpendicularbendingangle method)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle.compute_value"]], "coord_lines() (turbomoleio.core.base.basesystem method)": [[2, "turbomoleio.core.base.BaseSystem.coord_lines"]], "coord_str (turbomoleio.core.molecule.bondangle attribute)": [[2, "turbomoleio.core.molecule.BondAngle.coord_str"]], "coord_str (turbomoleio.core.molecule.collinearbendingangle attribute)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle.coord_str"]], "coord_str (turbomoleio.core.molecule.dihedralangle attribute)": [[2, "turbomoleio.core.molecule.DihedralAngle.coord_str"]], "coord_str (turbomoleio.core.molecule.distance attribute)": [[2, "turbomoleio.core.molecule.Distance.coord_str"]], "coord_str (turbomoleio.core.molecule.internaldefinition attribute)": [[2, "turbomoleio.core.molecule.InternalDefinition.coord_str"]], "coord_str (turbomoleio.core.molecule.inversedistance attribute)": [[2, "turbomoleio.core.molecule.InverseDistance.coord_str"]], "coord_str (turbomoleio.core.molecule.outofplaneangle attribute)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle.coord_str"]], "coord_str (turbomoleio.core.molecule.perpendicularbendingangle attribute)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle.coord_str"]], "coord_type (turbomoleio.core.molecule.bondangle attribute)": [[2, "turbomoleio.core.molecule.BondAngle.coord_type"]], "coord_type (turbomoleio.core.molecule.collinearbendingangle attribute)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle.coord_type"]], "coord_type (turbomoleio.core.molecule.dihedralangle attribute)": [[2, "turbomoleio.core.molecule.DihedralAngle.coord_type"]], "coord_type (turbomoleio.core.molecule.distance attribute)": [[2, "turbomoleio.core.molecule.Distance.coord_type"]], "coord_type (turbomoleio.core.molecule.internaldefinition attribute)": [[2, "turbomoleio.core.molecule.InternalDefinition.coord_type"]], "coord_type (turbomoleio.core.molecule.inversedistance attribute)": [[2, "turbomoleio.core.molecule.InverseDistance.coord_type"]], "coord_type (turbomoleio.core.molecule.outofplaneangle attribute)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle.coord_type"]], "coord_type (turbomoleio.core.molecule.perpendicularbendingangle attribute)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle.coord_type"]], "cpc() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.cpc"]], "cpc() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.cpc"]], "define_quit() (in module turbomoleio.core.utils)": [[2, "turbomoleio.core.utils.define_quit"]], "delta_e (turbomoleio.core.control.energy property)": [[2, "turbomoleio.core.control.Energy.delta_e"]], "empty() (turbomoleio.core.datagroups.datagroups class method)": [[2, "turbomoleio.core.datagroups.DataGroups.empty"]], "energy (turbomoleio.core.control.control property)": [[2, "turbomoleio.core.control.Control.energy"]], "from_dict() (turbomoleio.core.control.shells class method)": [[2, "turbomoleio.core.control.Shells.from_dict"]], "from_dict() (turbomoleio.core.datagroups.datagroups class method)": [[2, "turbomoleio.core.datagroups.DataGroups.from_dict"]], "from_dict() (turbomoleio.core.molecule.moleculesystem class method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.from_dict"]], "from_dict() (turbomoleio.core.periodic.periodicsystem class method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.from_dict"]], "from_file() (turbomoleio.core.control.control class method)": [[2, "turbomoleio.core.control.Control.from_file"]], "from_file() (turbomoleio.core.control.energy class method)": [[2, "turbomoleio.core.control.Energy.from_file"]], "from_file() (turbomoleio.core.control.gradient class method)": [[2, "turbomoleio.core.control.Gradient.from_file"]], "from_file() (turbomoleio.core.control.shells class method)": [[2, "turbomoleio.core.control.Shells.from_file"]], "from_file() (turbomoleio.core.datagroups.datagroups class method)": [[2, "turbomoleio.core.datagroups.DataGroups.from_file"]], "from_file() (turbomoleio.core.molecule.moleculesystem class method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.from_file"]], "from_file() (turbomoleio.core.periodic.periodicsystem class method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.from_file"]], "from_metric() (turbomoleio.core.control.control class method)": [[2, "turbomoleio.core.control.Control.from_metric"]], "from_string() (turbomoleio.core.control.energy class method)": [[2, "turbomoleio.core.control.Energy.from_string"]], "from_string() (turbomoleio.core.control.gradient class method)": [[2, "turbomoleio.core.control.Gradient.from_string"]], "from_string() (turbomoleio.core.control.shells class method)": [[2, "turbomoleio.core.control.Shells.from_string"]], "from_string() (turbomoleio.core.molecule.internaldefinition class method)": [[2, "turbomoleio.core.molecule.InternalDefinition.from_string"]], "from_string() (turbomoleio.core.molecule.moleculesystem class method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.from_string"]], "from_string() (turbomoleio.core.periodic.periodicsystem class method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.from_string"]], "get_charge() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.get_charge"]], "get_coord_lines() (in module turbomoleio.core.base)": [[2, "turbomoleio.core.base.get_coord_lines"]], "get_int_def_inconsistencies() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.get_int_def_inconsistencies"]], "get_mol_and_indices_frozen() (in module turbomoleio.core.base)": [[2, "turbomoleio.core.base.get_mol_and_indices_frozen"]], "get_shells() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.get_shells"]], "get_subclass_from_str() (turbomoleio.core.molecule.internaldefinition static method)": [[2, "turbomoleio.core.molecule.InternalDefinition.get_subclass_from_str"]], "get_subfiles_list() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.get_subfiles_list"]], "get_tm_version() (in module turbomoleio.core.utils)": [[2, "turbomoleio.core.utils.get_tm_version"]], "gradient (turbomoleio.core.control.control property)": [[2, "turbomoleio.core.control.Control.gradient"]], "has_inconsistencies() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.has_inconsistencies"]], "irreps (turbomoleio.core.control.shells property)": [[2, "turbomoleio.core.control.Shells.irreps"]], "is_uhf (turbomoleio.core.control.control property)": [[2, "turbomoleio.core.control.Control.is_uhf"]], "is_valid() (turbomoleio.core.molecule.internaldefinition method)": [[2, "turbomoleio.core.molecule.InternalDefinition.is_valid"]], "kdg() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.kdg"]], "kdg() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.kdg"]], "kill_data_group() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.kill_data_group"]], "last_grad_max (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.last_grad_max"]], "last_grad_norm (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.last_grad_norm"]], "max_gradients (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.max_gradients"]], "mdgo() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.mdgo"]], "mdgo() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.mdgo"]], "modify_data_group_options() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.modify_data_group_options"]], "molecule (turbomoleio.core.molecule.moleculesystem property)": [[2, "turbomoleio.core.molecule.MoleculeSystem.molecule"]], "n_atoms (turbomoleio.core.molecule.bondangle attribute)": [[2, "turbomoleio.core.molecule.BondAngle.n_atoms"]], "n_atoms (turbomoleio.core.molecule.collinearbendingangle attribute)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle.n_atoms"]], "n_atoms (turbomoleio.core.molecule.dihedralangle attribute)": [[2, "turbomoleio.core.molecule.DihedralAngle.n_atoms"]], "n_atoms (turbomoleio.core.molecule.distance attribute)": [[2, "turbomoleio.core.molecule.Distance.n_atoms"]], "n_atoms (turbomoleio.core.molecule.internaldefinition attribute)": [[2, "turbomoleio.core.molecule.InternalDefinition.n_atoms"]], "n_atoms (turbomoleio.core.molecule.inversedistance attribute)": [[2, "turbomoleio.core.molecule.InverseDistance.n_atoms"]], "n_atoms (turbomoleio.core.molecule.outofplaneangle attribute)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle.n_atoms"]], "n_atoms (turbomoleio.core.molecule.perpendicularbendingangle attribute)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle.n_atoms"]], "n_steps (turbomoleio.core.control.energy property)": [[2, "turbomoleio.core.control.Energy.n_steps"]], "n_steps (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.n_steps"]], "ndg (turbomoleio.core.datagroups.datagroups property)": [[2, "turbomoleio.core.datagroups.DataGroups.ndg"]], "norms (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.norms"]], "number_of_data_groups (turbomoleio.core.datagroups.datagroups property)": [[2, "turbomoleio.core.datagroups.DataGroups.number_of_data_groups"]], "plot() (turbomoleio.core.control.energy method)": [[2, "turbomoleio.core.control.Energy.plot"]], "plot() (turbomoleio.core.control.gradient method)": [[2, "turbomoleio.core.control.Gradient.plot"]], "remove_comments() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.remove_comments"]], "remove_dg_from_list() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.remove_dg_from_list"]], "remove_last_energy() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.remove_last_energy"]], "remove_last_gradient() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.remove_last_gradient"]], "sdg() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.sdg"]], "sdg() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.sdg"]], "sdgo() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.sdgo"]], "sdgo() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.sdgo"]], "set_disp() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.set_disp"]], "show_data_group() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.show_data_group"]], "show_data_group_option() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.show_data_group_option"]], "show_subfile_fname() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.show_subfile_fname"]], "split_string_to_dg_list() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.split_string_to_dg_list"]], "structure (turbomoleio.core.periodic.periodicsystem property)": [[2, "turbomoleio.core.periodic.PeriodicSystem.structure"]], "to_coord_file() (turbomoleio.core.base.basesystem method)": [[2, "turbomoleio.core.base.BaseSystem.to_coord_file"]], "to_coord_string() (turbomoleio.core.base.basesystem method)": [[2, "turbomoleio.core.base.BaseSystem.to_coord_string"]], "to_coord_string() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.to_coord_string"]], "to_coord_string() (turbomoleio.core.periodic.periodicsystem method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.to_coord_string"]], "to_datagroup() (turbomoleio.core.control.shells method)": [[2, "turbomoleio.core.control.Shells.to_datagroup"]], "to_file() (turbomoleio.core.base.basesystem method)": [[2, "turbomoleio.core.base.BaseSystem.to_file"]], "to_file() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.to_file"]], "to_file() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.to_file"]], "to_string() (turbomoleio.core.molecule.internaldefinition method)": [[2, "turbomoleio.core.molecule.InternalDefinition.to_string"]], "total_electrons (turbomoleio.core.control.shells property)": [[2, "turbomoleio.core.control.Shells.total_electrons"]], "turbomoleio.core": [[2, "module-turbomoleio.core"]], "turbomoleio.core.base": [[2, "module-turbomoleio.core.base"]], "turbomoleio.core.control": [[2, "module-turbomoleio.core.control"]], "turbomoleio.core.datagroups": [[2, "module-turbomoleio.core.datagroups"]], "turbomoleio.core.molecule": [[2, "module-turbomoleio.core.molecule"]], "turbomoleio.core.periodic": [[2, "module-turbomoleio.core.periodic"]], "turbomoleio.core.symmetry": [[2, "module-turbomoleio.core.symmetry"]], "turbomoleio.core.utils": [[2, "module-turbomoleio.core.utils"]], "testcontrol (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestControl"]], "testdatagroupfunctions (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions"]], "testenergy (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestEnergy"]], "testgetversion (class in turbomoleio.core.tests.test_utils)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion"]], "testgradient (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestGradient"]], "testinternaldefinition (class in turbomoleio.core.tests.test_molecule)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition"]], "testmoleculesystem (class in turbomoleio.core.tests.test_molecule)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem"]], "testperiodicsystem (class in turbomoleio.core.tests.test_periodic)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem"]], "testshells (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestShells"]], "check_dg() (in module turbomoleio.core.tests.test_molecule)": [[3, "turbomoleio.core.tests.test_molecule.check_dg"]], "check_equivalent_dg() (in module turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.check_equivalent_dg"]], "check_user_defined_bonds_dg() (in module turbomoleio.core.tests.test_molecule)": [[3, "turbomoleio.core.tests.test_molecule.check_user_defined_bonds_dg"]], "pytestmark (turbomoleio.core.tests.test_control.testdatagroupfunctions attribute)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.pytestmark"]], "pytestmark (turbomoleio.core.tests.test_molecule.testinternaldefinition attribute)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.pytestmark"]], "test_v72() (turbomoleio.core.tests.test_utils.testgetversion method)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion.test_V72"]], "test_v731() (turbomoleio.core.tests.test_utils.testgetversion method)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion.test_V731"]], "test_v741() (turbomoleio.core.tests.test_utils.testgetversion method)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion.test_V741"]], "test_v751() (turbomoleio.core.tests.test_utils.testgetversion method)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion.test_V751"]], "test_add_bond_angle() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_add_bond_angle"]], "test_add_cosmo() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_add_cosmo"]], "test_add_dihedral() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_add_dihedral"]], "test_add_distance() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_add_distance"]], "test_adg() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_adg"]], "test_bond_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_bond_angle"]], "test_cdg() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_cdg"]], "test_check_index() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_check_index"]], "test_cleanup() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_cleanup"]], "test_closed() (turbomoleio.core.tests.test_control.testshells method)": [[3, "turbomoleio.core.tests.test_control.TestShells.test_closed"]], "test_collinear_bending_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_collinear_bending_angle"]], "test_compare() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_compare"]], "test_compare_datagroup_string() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_compare_datagroup_string"]], "test_cpc() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_cpc"]], "test_cpc() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_cpc"]], "test_datagroups() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_datagroups"]], "test_dihedral_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_dihedral_angle"]], "test_disordered() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_disordered"]], "test_disp() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_disp"]], "test_distance() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_distance"]], "test_dummy_atoms() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_dummy_atoms"]], "test_empty() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_empty"]], "test_empty_gradient() (turbomoleio.core.tests.test_control.testgradient method)": [[3, "turbomoleio.core.tests.test_control.TestGradient.test_empty_gradient"]], "test_energy() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_energy"]], "test_energy_mp2() (turbomoleio.core.tests.test_control.testenergy method)": [[3, "turbomoleio.core.tests.test_control.TestEnergy.test_energy_mp2"]], "test_energy_scf() (turbomoleio.core.tests.test_control.testenergy method)": [[3, "turbomoleio.core.tests.test_control.TestEnergy.test_energy_scf"]], "test_fail_parse() (turbomoleio.core.tests.test_control.testshells method)": [[3, "turbomoleio.core.tests.test_control.TestShells.test_fail_parse"]], "test_fail_parsing() (turbomoleio.core.tests.test_control.testgradient method)": [[3, "turbomoleio.core.tests.test_control.TestGradient.test_fail_parsing"]], "test_fractional() (turbomoleio.core.tests.test_control.testshells method)": [[3, "turbomoleio.core.tests.test_control.TestShells.test_fractional"]], "test_from_file() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_from_file"]], "test_from_metric() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_from_metric"]], "test_from_string() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_from_string"]], "test_from_string() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_from_string"]], "test_get_charge() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_get_charge"]], "test_get_shells() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_get_shells"]], "test_get_subfiles_list() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_get_subfiles_list"]], "test_gradient() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_gradient"]], "test_gradient() (turbomoleio.core.tests.test_control.testgradient method)": [[3, "turbomoleio.core.tests.test_control.TestGradient.test_gradient"]], "test_inverse_distance() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_inverse_distance"]], "test_is_uhf() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_is_uhf"]], "test_kdg() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_kdg"]], "test_mdgo() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_mdgo"]], "test_modify_data_group_options() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_modify_data_group_options"]], "test_out_of_plane_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_out_of_plane_angle"]], "test_periodic() (turbomoleio.core.tests.test_control.testgradient method)": [[3, "turbomoleio.core.tests.test_control.TestGradient.test_periodic"]], "test_periodic_2d() (turbomoleio.core.tests.test_periodic.testperiodicsystem method)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem.test_periodic_2d"]], "test_periodic_3d() (turbomoleio.core.tests.test_periodic.testperiodicsystem method)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem.test_periodic_3d"]], "test_periodic_wrong_rotation() (turbomoleio.core.tests.test_periodic.testperiodicsystem method)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem.test_periodic_wrong_rotation"]], "test_perpendicular_bending_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_perpendicular_bending_angle"]], "test_read_periodic_2d() (turbomoleio.core.tests.test_periodic.testperiodicsystem method)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem.test_read_periodic_2d"]], "test_remove_comments() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_remove_comments"]], "test_remove_dg_from_list() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_remove_dg_from_list"]], "test_remove_energy() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_remove_energy"]], "test_remove_energy_in_control() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_remove_energy_in_control"]], "test_remove_gradient() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_remove_gradient"]], "test_remove_gradient_in_control() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_remove_gradient_in_control"]], "test_sdg() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_sdg"]], "test_sdg_subfiles() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_sdg_subfiles"]], "test_sdgo() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_sdgo"]], "test_show_data_group_option() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_show_data_group_option"]], "test_show_subfile_fname() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_show_subfile_fname"]], "test_split_string_to_dg_list() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_split_string_to_dg_list"]], "test_to_coord_string() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_to_coord_string"]], "test_to_file() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_to_file"]], "test_uhf() (turbomoleio.core.tests.test_control.testshells method)": [[3, "turbomoleio.core.tests.test_control.TestShells.test_uhf"]], "turbomoleio.core.tests": [[3, "module-turbomoleio.core.tests"]], "turbomoleio.core.tests.test_control": [[3, "module-turbomoleio.core.tests.test_control"]], "turbomoleio.core.tests.test_datagroups": [[3, "module-turbomoleio.core.tests.test_datagroups"]], "turbomoleio.core.tests.test_molecule": [[3, "module-turbomoleio.core.tests.test_molecule"]], "turbomoleio.core.tests.test_periodic": [[3, "module-turbomoleio.core.tests.test_periodic"]], "turbomoleio.core.tests.test_utils": [[3, "module-turbomoleio.core.tests.test_utils"]], "defineerror": [[4, "turbomoleio.input.define.DefineError"]], "defineexpecterror": [[4, "turbomoleio.input.define.DefineExpectError"]], "defineirederror": [[4, "turbomoleio.input.define.DefineIredError"]], "defineparametererror": [[4, "turbomoleio.input.define.DefineParameterError"]], "definerunner (class in turbomoleio.input.define)": [[4, "turbomoleio.input.define.DefineRunner"]], "parametersvalidationerror": [[4, "turbomoleio.input.utils.ParametersValidationError"]], "unsupporteddefinestateerror": [[4, "turbomoleio.input.define.UnsupportedDefineStateError"]], "dump_command_file() (turbomoleio.input.define.definerunner method)": [[4, "turbomoleio.input.define.DefineRunner.dump_command_file"]], "ex_setter() (in module turbomoleio.input.utils)": [[4, "turbomoleio.input.utils.ex_setter"]], "get_define_template() (in module turbomoleio.input.utils)": [[4, "turbomoleio.input.utils.get_define_template"]], "run_full() (turbomoleio.input.define.definerunner method)": [[4, "turbomoleio.input.define.DefineRunner.run_full"]], "run_generate_mo_files() (turbomoleio.input.define.definerunner method)": [[4, "turbomoleio.input.define.DefineRunner.run_generate_mo_files"]], "run_update_internal_coords() (turbomoleio.input.define.definerunner method)": [[4, "turbomoleio.input.define.DefineRunner.run_update_internal_coords"]], "schema_define_params (in module turbomoleio.input.utils)": [[4, "turbomoleio.input.utils.schema_define_params"]], "turbomoleio.input": [[4, "module-turbomoleio.input"]], "turbomoleio.input.define": [[4, "module-turbomoleio.input.define"]], "turbomoleio.input.utils": [[4, "module-turbomoleio.input.utils"]], "validate_parameters() (in module turbomoleio.input.utils)": [[4, "turbomoleio.input.utils.validate_parameters"]], "turbomoleio.input.templates": [[5, "module-turbomoleio.input.templates"]], "testdefinerunner (class in turbomoleio.input.tests.test_define)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner"]], "testexceptions (class in turbomoleio.input.tests.test_define)": [[6, "turbomoleio.input.tests.test_define.TestExceptions"]], "assert_sendline_calls() (turbomoleio.input.tests.test_define.testdefinerunner static method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.assert_sendline_calls"]], "assert_sendline_has_calls() (turbomoleio.input.tests.test_define.testdefinerunner static method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.assert_sendline_has_calls"]], "dr_data() (in module turbomoleio.input.tests.test_define)": [[6, "turbomoleio.input.tests.test_define.dr_data"]], "test_add_atomic_coordinates_from_file() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_add_atomic_coordinates_from_file"]], "test_add_atomic_coordinates_from_file_cartesian() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_add_atomic_coordinates_from_file_cartesian"]], "test_add_cosmo() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_add_cosmo"]], "test_close() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_close"]], "test_copy_mo_files_ab_mos() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_copy_mo_files_ab_mos"]], "test_copy_mo_files_alpha_beta() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_copy_mo_files_alpha_beta"]], "test_copy_mo_files_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_copy_mo_files_error"]], "test_copy_mo_files_mo() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_copy_mo_files_mo"]], "test_create() (turbomoleio.input.tests.test_define.testexceptions method)": [[6, "turbomoleio.input.tests.test_define.TestExceptions.test_create"]], "test_define_basis_sets() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_define_basis_sets"]], "test_define_core_potentials() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_define_core_potentials"]], "test_define_symmetry() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_define_symmetry"]], "test_define_symmetry_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_define_symmetry_error"]], "test_determine_symmetry() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_determine_symmetry"]], "test_determine_symmetry_eps() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_determine_symmetry_eps"]], "test_dump_command_file() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_dump_command_file"]], "test_excited_state_menu_error_not_activated() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_error_not_activated"]], "test_excited_state_menu_frequency() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_frequency"]], "test_excited_state_menu_irrep() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_irrep"]], "test_excited_state_menu_irrep_wrong_sym() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_irrep_wrong_sym"]], "test_excited_state_menu_polly() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_polly"]], "test_excited_state_menu_rpas() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_rpas"]], "test_excited_state_menu_urpa() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_urpa"]], "test_excited_state_menu_urpa_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_urpa_error"]], "test_excited_state_menu_wrong_ex_method() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_wrong_ex_method"]], "test_excited_state_menu_wrong_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_wrong_menu"]], "test_existing_coordinates() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates"]], "test_existing_coordinates_cartesian() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates_cartesian"]], "test_existing_coordinates_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates_error"]], "test_existing_coordinates_no_update() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates_no_update"]], "test_existing_coordinates_unsupported() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates_unsupported"]], "test_expect() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_expect"]], "test_expect_raise_eof() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_expect_raise_eof"]], "test_expect_raise_timeout() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_expect_raise_timeout"]], "test_extended_hueckel_theory_menu_charge() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_charge"]], "test_extended_hueckel_theory_menu_default() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_default"]], "test_extended_hueckel_theory_menu_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_error"]], "test_extended_hueckel_theory_menu_nocharge() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_nocharge"]], "test_extended_hueckel_theory_menu_unpaired() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_unpaired"]], "test_general_menu_ccsdt() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_general_menu_ccsdt"]], "test_general_menu_dft() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_general_menu_dft"]], "test_general_menu_hf() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_general_menu_hf"]], "test_general_menu_wrong_method() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_general_menu_wrong_method"]], "test_generate_internal_coordinates() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_generate_internal_coordinates"]], "test_generate_internal_coordinates_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_generate_internal_coordinates_error"]], "test_geometry_menu_copymo() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_copymo"]], "test_geometry_menu_incompatibility_1() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_incompatibility_1"]], "test_geometry_menu_incompatibility_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_incompatibility_2"]], "test_geometry_menu_new_coords_1() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_new_coords_1"]], "test_geometry_menu_new_coords_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_new_coords_2"]], "test_geometry_menu_new_coords_3() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_new_coords_3"]], "test_geometry_menu_new_coords_4() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_new_coords_4"]], "test_geometry_menu_no_new_coords() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_no_new_coords"]], "test_get_bin_path() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_get_bin_path"]], "test_get_define_template() (in module turbomoleio.input.tests.test_utils)": [[6, "turbomoleio.input.tests.test_utils.test_get_define_template"]], "test_go_to_general_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_go_to_general_menu"]], "test_init() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_init"]], "test_initialize_control_1() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_initialize_control_1"]], "test_initialize_control_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_initialize_control_2"]], "test_initialize_control_incompatibility() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_initialize_control_incompatibility"]], "test_is_alive() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_is_alive"]], "test_postprocess() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_postprocess"]], "test_quit_general_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_quit_general_menu"]], "test_run_full_1() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_full_1"]], "test_run_full_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_full_2"]], "test_run_generate_mo_files() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_generate_mo_files"]], "test_run_generate_mo_files_sym() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_generate_mo_files_sym"]], "test_run_update_internal_coords() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_update_internal_coords"]], "test_run_update_internal_coords_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_update_internal_coords_error"]], "test_sendline() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_sendline"]], "test_set_basis() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_basis"]], "test_set_basis_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_basis_error"]], "test_set_basis_error_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_basis_error_2"]], "test_set_basis_error_3() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_basis_error_3"]], "test_set_dft_options_no_dft() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_dft_options_no_dft"]], "test_set_dft_options_use_dft() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_dft_options_use_dft"]], "test_set_dft_options_wrong_xc() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_dft_options_wrong_xc"]], "test_set_ecp_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ecp_error"]], "test_set_ecp_error_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ecp_error_2"]], "test_set_ecp_error_3() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ecp_error_3"]], "test_set_metric() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_metric"]], "test_set_mo_from_control_file() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mo_from_control_file"]], "test_set_mo_from_control_file_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mo_from_control_file_2"]], "test_set_mo_from_control_file_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mo_from_control_file_error"]], "test_set_mo_from_control_file_longpath() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mo_from_control_file_longpath"]], "test_set_mp2_options() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options"]], "test_set_mp2_options_f12() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options_f12"]], "test_set_mp2_options_geoopt() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options_geoopt"]], "test_set_mp2_options_mp2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options_mp2"]], "test_set_mp2_options_mp2_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options_mp2_error"]], "test_set_ri_state() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ri_state"]], "test_set_ri_state_marij() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ri_state_marij"]], "test_set_scf_options() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_scf_options"]], "test_skip_atomic_attribute_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_skip_atomic_attribute_menu"]], "test_skip_atomic_attribute_menu_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_skip_atomic_attribute_menu_error"]], "test_skip_atomic_attribute_menu_internal() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_skip_atomic_attribute_menu_internal"]], "test_switch_to_atomic_attribute_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_atomic_attribute_menu"]], "test_switch_to_atomic_attribute_menu_internal() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_atomic_attribute_menu_internal"]], "test_switch_to_atomic_attribute_menu_internal_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_atomic_attribute_menu_internal_error"]], "test_switch_to_molecular_orbital_definition_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_molecular_orbital_definition_menu"]], "test_switch_to_scf_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_scf_menu"]], "test_validate_parameters() (in module turbomoleio.input.tests.test_utils)": [[6, "turbomoleio.input.tests.test_utils.test_validate_parameters"]], "turbomoleio.input.tests": [[6, "module-turbomoleio.input.tests"]], "turbomoleio.input.tests.test_define": [[6, "module-turbomoleio.input.tests.test_define"]], "turbomoleio.input.tests.test_utils": [[6, "module-turbomoleio.input.tests.test_utils"]], "aoforcenumericalintegrationdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.AoforceNumericalIntegrationData"]], "aoforceoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.AoforceOutput"]], "aoforcerotationaldata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.AoforceRotationalData"]], "aoforcevibrationaldata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.AoforceVibrationalData"]], "basedata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.BaseData"]], "basisdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.BasisData"]], "cosmodata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.CosmoData"]], "dftdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.DFTData"]], "dispersioncorrectiondata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.DispersionCorrectionData"]], "egradoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.EgradOutput"]], "eigeroutput (class in turbomoleio.output.states)": [[7, "turbomoleio.output.states.EigerOutput"]], "eigerrunner (class in turbomoleio.output.states)": [[7, "turbomoleio.output.states.EigerRunner"]], "electrostaticmomentsdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.ElectrostaticMomentsData"]], "escfdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.EscfData"]], "escfiterationdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.EscfIterationData"]], "escfonlyoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.EscfOnlyOutput"]], "escfoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.EscfOutput"]], "functionaldata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.FunctionalData"]], "geometrydata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.GeometryData"]], "gradoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.GradOutput"]], "integraldata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.IntegralData"]], "jobexoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.JobexOutput"]], "mp2data (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.MP2Data"]], "mp2output (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.MP2Output"]], "mp2results (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.MP2Results"]], "parser (class in turbomoleio.output.parser)": [[7, "turbomoleio.output.parser.Parser"]], "periodicitydata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.PeriodicityData"]], "relaxconvergencedata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RelaxConvergenceData"]], "relaxdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RelaxData"]], "relaxgradientsdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RelaxGradientsData"]], "relaxoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.RelaxOutput"]], "ridata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RiData"]], "ricc2output (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.Ricc2Output"]], "rundata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RunData"]], "scfdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.ScfData"]], "scfenergiesdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.ScfEnergiesData"]], "scfiterationdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.ScfIterationData"]], "scfoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.ScfOutput"]], "singleexcitation (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.SingleExcitation"]], "smearingdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.SmearingData"]], "spindata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.SpinData"]], "state (class in turbomoleio.output.states)": [[7, "turbomoleio.output.states.State"]], "states (class in turbomoleio.output.states)": [[7, "turbomoleio.output.states.States"]], "statptdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.StatptData"]], "statptoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.StatptOutput"]], "symmetrydata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.SymmetryData"]], "turbomoledata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.TurbomoleData"]], "all_done() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.all_done"]], "aoforce_analysis() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.aoforce_analysis"]], "aoforce_numerical_integration() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.aoforce_numerical_integration"]], "as_dict() (turbomoleio.output.states.state method)": [[7, "turbomoleio.output.states.State.as_dict"]], "as_dict() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.as_dict"]], "basis() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.basis"]], "centers() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.centers"]], "compare_states() (turbomoleio.output.states.eigeroutput method)": [[7, "turbomoleio.output.states.EigerOutput.compare_states"]], "convert_float() (in module turbomoleio.output.parser)": [[7, "turbomoleio.output.parser.convert_float"]], "convert_int() (in module turbomoleio.output.parser)": [[7, "turbomoleio.output.parser.convert_int"]], "convert_time_string() (in module turbomoleio.output.parser)": [[7, "turbomoleio.output.parser.convert_time_string"]], "coordinates() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.coordinates"]], "cosmo_header() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.cosmo_header"]], "cosmo_results() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.cosmo_results"]], "density_functional_data() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.density_functional_data"]], "dftd() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.dftd"]], "egrad_excited_state() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.egrad_excited_state"]], "eigenvalues (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.eigenvalues"]], "electrostatic_moments() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.electrostatic_moments"]], "escf_excitations() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.escf_excitations"]], "escf_gs_total_en() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.escf_gs_total_en"]], "escf_iterations() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.escf_iterations"]], "fermi() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.fermi"]], "filter_states() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.filter_states"]], "from_dict() (turbomoleio.output.states.state class method)": [[7, "turbomoleio.output.states.State.from_dict"]], "from_file() (turbomoleio.output.data.basedata class method)": [[7, "turbomoleio.output.data.BaseData.from_file"]], "from_file() (turbomoleio.output.parser.parser class method)": [[7, "turbomoleio.output.parser.Parser.from_file"]], "from_file() (turbomoleio.output.states.eigeroutput class method)": [[7, "turbomoleio.output.states.EigerOutput.from_file"]], "from_file() (turbomoleio.output.states.states class method)": [[7, "turbomoleio.output.states.States.from_file"]], "from_parser() (turbomoleio.output.data.aoforcenumericalintegrationdata class method)": [[7, "turbomoleio.output.data.AoforceNumericalIntegrationData.from_parser"]], "from_parser() (turbomoleio.output.data.aoforcerotationaldata class method)": [[7, "turbomoleio.output.data.AoforceRotationalData.from_parser"]], "from_parser() (turbomoleio.output.data.aoforcevibrationaldata class method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.from_parser"]], "from_parser() (turbomoleio.output.data.basedata class method)": [[7, "turbomoleio.output.data.BaseData.from_parser"]], "from_parser() (turbomoleio.output.data.basisdata class method)": [[7, "turbomoleio.output.data.BasisData.from_parser"]], "from_parser() (turbomoleio.output.data.cosmodata class method)": [[7, "turbomoleio.output.data.CosmoData.from_parser"]], "from_parser() (turbomoleio.output.data.dftdata class method)": [[7, "turbomoleio.output.data.DFTData.from_parser"]], "from_parser() (turbomoleio.output.data.dispersioncorrectiondata class method)": [[7, "turbomoleio.output.data.DispersionCorrectionData.from_parser"]], "from_parser() (turbomoleio.output.data.electrostaticmomentsdata class method)": [[7, "turbomoleio.output.data.ElectrostaticMomentsData.from_parser"]], "from_parser() (turbomoleio.output.data.escfdata class method)": [[7, "turbomoleio.output.data.EscfData.from_parser"]], "from_parser() (turbomoleio.output.data.escfiterationdata class method)": [[7, "turbomoleio.output.data.EscfIterationData.from_parser"]], "from_parser() (turbomoleio.output.data.functionaldata class method)": [[7, "turbomoleio.output.data.FunctionalData.from_parser"]], "from_parser() (turbomoleio.output.data.geometrydata class method)": [[7, "turbomoleio.output.data.GeometryData.from_parser"]], "from_parser() (turbomoleio.output.data.integraldata class method)": [[7, "turbomoleio.output.data.IntegralData.from_parser"]], "from_parser() (turbomoleio.output.data.mp2data class method)": [[7, "turbomoleio.output.data.MP2Data.from_parser"]], "from_parser() (turbomoleio.output.data.mp2results class method)": [[7, "turbomoleio.output.data.MP2Results.from_parser"]], "from_parser() (turbomoleio.output.data.periodicitydata class method)": [[7, "turbomoleio.output.data.PeriodicityData.from_parser"]], "from_parser() (turbomoleio.output.data.relaxconvergencedata class method)": [[7, "turbomoleio.output.data.RelaxConvergenceData.from_parser"]], "from_parser() (turbomoleio.output.data.relaxdata class method)": [[7, "turbomoleio.output.data.RelaxData.from_parser"]], "from_parser() (turbomoleio.output.data.relaxgradientsdata class method)": [[7, "turbomoleio.output.data.RelaxGradientsData.from_parser"]], "from_parser() (turbomoleio.output.data.ridata class method)": [[7, "turbomoleio.output.data.RiData.from_parser"]], "from_parser() (turbomoleio.output.data.rundata class method)": [[7, "turbomoleio.output.data.RunData.from_parser"]], "from_parser() (turbomoleio.output.data.scfdata class method)": [[7, "turbomoleio.output.data.ScfData.from_parser"]], "from_parser() (turbomoleio.output.data.scfenergiesdata class method)": [[7, "turbomoleio.output.data.ScfEnergiesData.from_parser"]], "from_parser() (turbomoleio.output.data.scfiterationdata class method)": [[7, "turbomoleio.output.data.ScfIterationData.from_parser"]], "from_parser() (turbomoleio.output.data.smearingdata class method)": [[7, "turbomoleio.output.data.SmearingData.from_parser"]], "from_parser() (turbomoleio.output.data.spindata class method)": [[7, "turbomoleio.output.data.SpinData.from_parser"]], "from_parser() (turbomoleio.output.data.statptdata class method)": [[7, "turbomoleio.output.data.StatptData.from_parser"]], "from_parser() (turbomoleio.output.data.symmetrydata class method)": [[7, "turbomoleio.output.data.SymmetryData.from_parser"]], "from_parser() (turbomoleio.output.data.turbomoledata class method)": [[7, "turbomoleio.output.data.TurbomoleData.from_parser"]], "from_parser() (turbomoleio.output.files.aoforceoutput class method)": [[7, "turbomoleio.output.files.AoforceOutput.from_parser"]], "from_parser() (turbomoleio.output.files.egradoutput class method)": [[7, "turbomoleio.output.files.EgradOutput.from_parser"]], "from_parser() (turbomoleio.output.files.escfonlyoutput class method)": [[7, "turbomoleio.output.files.EscfOnlyOutput.from_parser"]], "from_parser() (turbomoleio.output.files.escfoutput class method)": [[7, "turbomoleio.output.files.EscfOutput.from_parser"]], "from_parser() (turbomoleio.output.files.gradoutput class method)": [[7, "turbomoleio.output.files.GradOutput.from_parser"]], "from_parser() (turbomoleio.output.files.jobexoutput class method)": [[7, "turbomoleio.output.files.JobexOutput.from_parser"]], "from_parser() (turbomoleio.output.files.mp2output class method)": [[7, "turbomoleio.output.files.MP2Output.from_parser"]], "from_parser() (turbomoleio.output.files.relaxoutput class method)": [[7, "turbomoleio.output.files.RelaxOutput.from_parser"]], "from_parser() (turbomoleio.output.files.ricc2output class method)": [[7, "turbomoleio.output.files.Ricc2Output.from_parser"]], "from_parser() (turbomoleio.output.files.scfoutput class method)": [[7, "turbomoleio.output.files.ScfOutput.from_parser"]], "from_parser() (turbomoleio.output.files.statptoutput class method)": [[7, "turbomoleio.output.files.StatptOutput.from_parser"]], "from_string() (turbomoleio.output.data.basedata class method)": [[7, "turbomoleio.output.data.BaseData.from_string"]], "from_string() (turbomoleio.output.states.eigeroutput class method)": [[7, "turbomoleio.output.states.EigerOutput.from_string"]], "gap (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.gap"]], "generate_lowest_filled_states() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.generate_lowest_filled_states"]], "get_eiger_output() (turbomoleio.output.states.eigerrunner method)": [[7, "turbomoleio.output.states.EigerRunner.get_eiger_output"]], "get_freqs_df() (turbomoleio.output.data.aoforcevibrationaldata method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.get_freqs_df"]], "get_mos_energies() (in module turbomoleio.output.states)": [[7, "turbomoleio.output.states.get_mos_energies"]], "get_shells() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.get_shells"]], "get_split_jobex_parsers() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.get_split_jobex_parsers"]], "get_value() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.get_value"]], "gradient() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.gradient"]], "grep_line() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.grep_line"]], "has_fractional_occ (turbomoleio.output.states.state property)": [[7, "turbomoleio.output.states.State.has_fractional_occ"]], "has_fractional_occ (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.has_fractional_occ"]], "has_hole (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.has_hole"]], "header() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.header"]], "homo (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.homo"]], "homo_index (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.homo_index"]], "insert() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.insert"]], "integral() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.integral"]], "irrep_indices (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.irrep_indices"]], "irreps (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.irreps"]], "is_uhf (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.is_uhf"]], "is_uhf() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.is_uhf"]], "lumo (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.lumo"]], "lumo_index (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.lumo_index"]], "max_occupation (turbomoleio.output.states.state property)": [[7, "turbomoleio.output.states.State.max_occupation"]], "mp2_data() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.mp2_data"]], "mp2_results() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.mp2_results"]], "n_negative_freqs() (turbomoleio.output.data.aoforcevibrationaldata method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.n_negative_freqs"]], "n_positive_freqs() (turbomoleio.output.data.aoforcevibrationaldata method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.n_positive_freqs"]], "n_states (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.n_states"]], "n_zero_freqs() (turbomoleio.output.data.aoforcevibrationaldata method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.n_zero_freqs"]], "occupations (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.occupations"]], "periodicity_data() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.periodicity_data"]], "plot_energies() (turbomoleio.output.data.scfiterationdata method)": [[7, "turbomoleio.output.data.ScfIterationData.plot_energies"]], "pre_escf_run() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.pre_escf_run"]], "pre_scf_run() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.pre_scf_run"]], "rdgrad_memory() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.rdgrad_memory"]], "relax_conv_info() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.relax_conv_info"]], "relax_gradient_values() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.relax_gradient_values"]], "relax_info() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.relax_info"]], "rij_info() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.rij_info"]], "riper_scf_energies() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.riper_scf_energies"]], "run() (turbomoleio.output.states.eigerrunner method)": [[7, "turbomoleio.output.states.EigerRunner.run"]], "s2() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.s2"]], "scf_energies() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.scf_energies"]], "scf_iterations() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.scf_iterations"]], "spins (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.spins"]], "statpt_info() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.statpt_info"]], "string (turbomoleio.output.parser.parser property)": [[7, "turbomoleio.output.parser.Parser.string"]], "symmetry() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.symmetry"]], "timings() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.timings"]], "to_file() (turbomoleio.output.states.eigerrunner method)": [[7, "turbomoleio.output.states.EigerRunner.to_file"]], "total_electrons (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.total_electrons"]], "turbomoleio.output": [[7, "module-turbomoleio.output"]], "turbomoleio.output.data": [[7, "module-turbomoleio.output.data"]], "turbomoleio.output.files": [[7, "module-turbomoleio.output.files"]], "turbomoleio.output.parser": [[7, "module-turbomoleio.output.parser"]], "turbomoleio.output.states": [[7, "module-turbomoleio.output.states"]], "testfiles (class in turbomoleio.output.tests.test_files)": [[8, "turbomoleio.output.tests.test_files.TestFiles"]], "testfunctions (class in turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.TestFunctions"]], "testparser (class in turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.TestParser"]], "cls_dict_path() (in module turbomoleio.output.tests.test_files)": [[8, "turbomoleio.output.tests.test_files.cls_dict_path"]], "generate_files() (in module turbomoleio.output.tests.test_files)": [[8, "turbomoleio.output.tests.test_files.generate_files"]], "generate_files() (in module turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.generate_files"]], "method() (in module turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.method"]], "parser_and_dict() (in module turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.parser_and_dict"]], "test_aoforcevibrationaldata() (in module turbomoleio.output.tests.test_data)": [[8, "turbomoleio.output.tests.test_data.test_AoforceVibrationalData"]], "test_scfiterationdata() (in module turbomoleio.output.tests.test_data)": [[8, "turbomoleio.output.tests.test_data.test_ScfIterationData"]], "test_closed() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_closed"]], "test_convert_float() (turbomoleio.output.tests.test_parser.testfunctions method)": [[8, "turbomoleio.output.tests.test_parser.TestFunctions.test_convert_float"]], "test_convert_int() (turbomoleio.output.tests.test_parser.testfunctions method)": [[8, "turbomoleio.output.tests.test_parser.TestFunctions.test_convert_int"]], "test_convert_time_string() (turbomoleio.output.tests.test_parser.testfunctions method)": [[8, "turbomoleio.output.tests.test_parser.TestFunctions.test_convert_time_string"]], "test_eiger_runner() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_eiger_runner"]], "test_error_homo() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_error_homo"]], "test_fail_all_done_check() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_fail_all_done_check"]], "test_get_split_jobex_parsers() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_get_split_jobex_parsers"]], "test_get_value() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_get_value"]], "test_grep_line() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_grep_line"]], "test_hole() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_hole"]], "test_no_empty_states() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_no_empty_states"]], "test_parsing_failures() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_parsing_failures"]], "test_properties() (turbomoleio.output.tests.test_files.testfiles method)": [[8, "turbomoleio.output.tests.test_files.TestFiles.test_properties"]], "test_properties() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_properties"]], "test_state() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_state"]], "test_str() (in module turbomoleio.output.tests.test_data)": [[8, "turbomoleio.output.tests.test_data.test_str"]], "test_uhf() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_uhf"]], "turbomoleio.output.tests": [[8, "module-turbomoleio.output.tests"]], "turbomoleio.output.tests.test_data": [[8, "module-turbomoleio.output.tests.test_data"]], "turbomoleio.output.tests.test_files": [[8, "module-turbomoleio.output.tests.test_files"]], "turbomoleio.output.tests.test_parser": [[8, "module-turbomoleio.output.tests.test_parser"]], "turbomoleio.output.tests.test_states": [[8, "module-turbomoleio.output.tests.test_states"]], "itestconfig (class in turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.ItestConfig"]], "itesterror": [[9, "turbomoleio.testfiles.utils.ItestError"]], "assert_msonable() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.assert_MSONable"]], "assert_almost_equal() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.assert_almost_equal"]], "compare_differences() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.compare_differences"]], "define_timeout (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.define_timeout"]], "delete_tmp_dir (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.delete_tmp_dir"]], "dryrun (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.dryrun"]], "dryrun_fpath (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.dryrun_fpath"]], "dryrun_use_ref_control (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.dryrun_use_ref_control"]], "generate_control_for_test() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.generate_control_for_test"]], "generate_ref (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.generate_ref"]], "generate_reference_out_parser_files() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.generate_reference_out_parser_files"]], "generate_reference_output() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.generate_reference_output"]], "get_control_filepath() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.get_control_filepath"]], "get_control_integration() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.get_control_integration"]], "get_sp() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.get_sp"]], "get_tfp() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.get_tfp"]], "gisnan() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.gisnan"]], "has_matplotlib() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.has_matplotlib"]], "run_itest() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.run_itest"]], "temp_dir() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.temp_dir"]], "tol (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.tol"]], "touch_file() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.touch_file"]], "turbomoleio.testfiles": [[9, "module-turbomoleio.testfiles"]], "turbomoleio.testfiles.utils": [[9, "module-turbomoleio.testfiles.utils"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["api/modules", "api/turbomoleio", "api/turbomoleio.core", "api/turbomoleio.core.tests", "api/turbomoleio.input", "api/turbomoleio.input.templates", "api/turbomoleio.input.tests", "api/turbomoleio.output", "api/turbomoleio.output.tests", "api/turbomoleio.testfiles", "appendix", "bugs", "changelog", "coord", "datagroups", "definerunner", "developer/definerunner", "developer/introduction", "developer/parsing_logs", "developer/testing", "developer/versioning", "index", "license", "output_parsing"], "filenames": ["api/modules.rst", "api/turbomoleio.rst", "api/turbomoleio.core.rst", "api/turbomoleio.core.tests.rst", "api/turbomoleio.input.rst", "api/turbomoleio.input.templates.rst", "api/turbomoleio.input.tests.rst", "api/turbomoleio.output.rst", "api/turbomoleio.output.tests.rst", "api/turbomoleio.testfiles.rst", "appendix.rst", "bugs.rst", "changelog.rst", "coord.rst", "datagroups.rst", "definerunner.rst", "developer/definerunner.rst", "developer/introduction.rst", "developer/parsing_logs.rst", "developer/testing.rst", "developer/versioning.rst", "index.rst", "license.rst", "output_parsing.rst"], "titles": ["turbomoleio", "turbomoleio package", "turbomoleio.core package", "turbomoleio.core.tests package", "turbomoleio.input package", "turbomoleio.input.templates package", "turbomoleio.input.tests package", "turbomoleio.output package", "turbomoleio.output.tests package", "turbomoleio.testfiles package", "Appendix", "Reporting bugs", "Changelog", "The coord file", "The data group files", "Running define", "Define runner", "Contributing", "Output logs parsing", "Testing", "Versioning", "turbomoleio", "License", "Outputs parsing"], "terms": {"packag": [0, 10, 11, 12, 13, 15, 17, 18, 19, 20, 21, 22], "subpackag": 0, "core": [0, 1, 7, 13, 14, 16], "submodul": [0, 1], "base": [0, 1, 3, 4, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 21, 22, 23], "modul": [0, 12, 14, 15, 16, 19, 20, 21, 23], "control": [0, 1, 3, 4, 7, 9, 12, 15, 16, 19, 21, 22, 23], "datagroup": [0, 1, 3, 7, 9, 12, 20, 21, 23], "molecul": [0, 1, 3, 7, 13, 15, 19, 21, 23], "period": [0, 1, 7, 12, 21, 23], "symmetri": [0, 1, 7, 14, 15, 23], "util": [0, 1, 6, 7, 15, 16, 19], "content": [0, 14, 22, 23], "input": [0, 1, 2, 7, 12, 14, 15, 16, 18, 19, 20, 21, 23], "defin": [0, 1, 2, 3, 5, 6, 7, 9, 12, 13, 14, 17, 19, 20, 21, 22], "output": [0, 1, 2, 4, 9, 12, 13, 14, 15, 20, 21, 22], "data": [0, 1, 2, 3, 8, 12, 13, 15, 16, 18, 21, 22], "file": [0, 1, 2, 4, 8, 9, 11, 12, 15, 16, 17, 18, 19, 20, 21, 22], "parser": [0, 1, 8, 9, 18, 19, 21, 23], "state": [0, 1, 2, 4, 14, 15, 21, 22], "testfil": [0, 1, 7, 8, 12, 18, 19], "test": [1, 2, 4, 7, 9, 15, 17, 21], "test_control": [1, 2], "test_datagroup": [1, 2], "test_molecul": [1, 2], "test_period": [1, 2], "test_util": [1, 2, 4], "basesystem": [1, 2], "coord_lin": [1, 2], "to_coord_fil": [1, 2], "to_coord_str": [1, 2], "to_fil": [1, 2, 7, 14], "get_coord_lin": [1, 2], "get_mol_and_indices_frozen": [1, 2], "add_cosmo": [1, 2, 16], "cpc": [1, 2, 14], "energi": [1, 2, 7, 14, 15, 18, 21, 23], "from_fil": [1, 2, 7, 13, 14, 18, 23], "from_metr": [1, 2], "get_charg": [1, 2, 14], "get_shel": [1, 2, 7, 14], "get_subfiles_list": [1, 2], "gradient": [1, 2, 7, 12, 14, 23], "is_uhf": [1, 2, 7], "remove_last_energi": [1, 2], "remove_last_gradi": [1, 2], "set_disp": [1, 2, 14, 16], "default": [1, 2, 4, 7, 9, 14, 15, 18, 19], "metric": [1, 2, 4, 15], "delta_": [1, 2], "from_str": [1, 2, 7, 18], "n_step": [1, 2, 7], "plot": [1, 2, 7, 14, 23], "last_grad_max": [1, 2], "last_grad_norm": [1, 2], "max_gradi": [1, 2], "norm": [1, 2, 7], "shell": [1, 2, 7, 14, 15], "as_dict": [1, 2, 7, 23], "from_dict": [1, 2, 7, 23], "irrep": [1, 2, 7, 15], "to_datagroup": [1, 2], "total_electron": [1, 2, 7], "adg": [1, 2, 14], "cdg": [1, 2, 9, 14, 15], "kdg": [1, 2, 14], "mdgo": [1, 2, 14], "sdg": [1, 2, 14], "sdgo": [1, 2, 14], "add_data_group": [1, 2, 14], "change_data_group": [1, 2, 14, 16], "compar": [1, 2, 3, 7, 8, 9, 18, 19], "empti": [1, 2, 7, 14, 15, 23], "kill_data_group": [1, 2, 14], "modify_data_group_opt": [1, 2, 14], "ndg": [1, 2], "number_of_data_group": [1, 2], "show_data_group": [1, 2, 14], "show_data_group_opt": [1, 2, 14], "show_subfile_fnam": [1, 2], "cleanup_str": [1, 2], "compare_datagroup_str": [1, 2], "remove_com": [1, 2], "remove_dg_from_list": [1, 2], "split_string_to_dg_list": [1, 2], "bondangl": [1, 2], "compute_valu": [1, 2], "coord_str": [1, 2], "coord_typ": [1, 2], "n_atom": [1, 2], "collinearbendingangl": [1, 2], "dihedralangl": [1, 2], "distanc": [1, 2, 7, 13, 15], "internaldefinit": [1, 2, 13], "get_subclass_from_str": [1, 2], "is_valid": [1, 2], "to_str": [1, 2], "inversedist": [1, 2], "moleculesystem": [1, 2, 13, 21], "add_bond_angl": [1, 2, 13], "add_dihedr": [1, 2], "add_dist": [1, 2, 13], "get_int_def_inconsist": [1, 2], "has_inconsist": [1, 2], "outofplaneangl": [1, 2], "perpendicularbendingangl": [1, 2], "periodicsystem": [1, 2, 12, 13], "structur": [1, 2, 3, 7, 9, 12, 13, 14, 18, 19, 21], "define_quit": [1, 2], "get_tm_vers": [1, 2], "templat": [1, 4, 6, 12, 15], "test_defin": [1, 4], "defineerror": [1, 4, 15, 16], "defineexpecterror": [1, 4, 15], "defineirederror": [1, 4], "defineparametererror": [1, 4], "definerunn": [1, 4, 6, 9, 16, 19, 21], "dump_command_fil": [1, 4], "run_ful": [1, 4, 15, 16], "run_generate_mo_fil": [1, 4, 15, 16], "run_update_internal_coord": [1, 4, 15, 16], "unsupporteddefinestateerror": [1, 4], "parametersvalidationerror": [1, 4], "ex_sett": [1, 4], "get_define_templ": [1, 4, 15], "schema_define_param": [1, 4, 16], "validate_paramet": [1, 4, 15], "test_data": [1, 7], "test_fil": [1, 7, 18], "test_pars": [1, 7, 18], "test_stat": [1, 7], "aoforcenumericalintegrationdata": [1, 7, 23], "from_pars": [1, 7, 18, 23], "aoforcerotationaldata": [1, 7, 23], "aoforcevibrationaldata": [1, 7, 23], "get_freqs_df": [1, 7], "n_negative_freq": [1, 7], "n_positive_freq": [1, 7], "n_zero_freq": [1, 7], "basedata": [1, 7, 9, 18], "basisdata": [1, 7, 23], "cosmodata": [1, 7, 23], "dftdata": [1, 7, 23], "dispersioncorrectiondata": [1, 7, 23], "electrostaticmomentsdata": [1, 7, 23], "escfdata": [1, 7, 23], "escfiterationdata": [1, 7, 23], "functionaldata": [1, 7, 23], "geometrydata": [1, 7, 23], "integraldata": [1, 7, 23], "mp2data": [1, 7, 23], "mp2result": [1, 7, 23], "periodicitydata": [1, 7, 23], "relaxconvergencedata": [1, 7, 23], "relaxdata": [1, 7, 23], "relaxgradientsdata": [1, 7, 23], "ridata": [1, 7, 23], "rundata": [1, 7, 23], "scfdata": [1, 7, 23], "scfenergiesdata": [1, 7, 18, 23], "scfiterationdata": [1, 7, 23], "plot_energi": [1, 7, 23], "singleexcit": [1, 7], "smearingdata": [1, 7, 23], "spindata": [1, 7, 23], "statptdata": [1, 7, 23], "symmetrydata": [1, 7, 23], "turbomoledata": [1, 7, 23], "aoforceoutput": [1, 7, 23], "egradoutput": [1, 7, 23], "escfonlyoutput": [1, 7, 18, 23], "escfoutput": [1, 7, 23], "gradoutput": [1, 7, 23], "jobexoutput": [1, 7, 23], "mp2output": [1, 7, 23], "relaxoutput": [1, 7, 23], "ricc2output": [1, 7, 23], "scfoutput": [1, 7, 23], "statptoutput": [1, 7, 23], "all_don": [1, 7], "aoforce_analysi": [1, 7], "aoforce_numerical_integr": [1, 7], "basi": [1, 2, 4, 7, 15, 18, 23], "center": [1, 7, 23], "coordin": [1, 2, 4, 7, 12, 13, 15], "cosmo_head": [1, 7], "cosmo_result": [1, 7], "density_functional_data": [1, 7], "dftd": [1, 7], "egrad_excited_st": [1, 7], "electrostatic_mo": [1, 7], "escf_excit": [1, 7], "escf_gs_total_en": [1, 7], "escf_iter": [1, 7], "fermi": [1, 7], "get_split_jobex_pars": [1, 7], "get_valu": [1, 7], "grep_lin": [1, 7], "header": [1, 2, 7, 18], "integr": [1, 7, 9, 16, 17, 21, 23], "mp2_data": [1, 7], "mp2_result": [1, 7], "periodicity_data": [1, 7], "pre_escf_run": [1, 7], "pre_scf_run": [1, 7], "rdgrad_memori": [1, 7], "relax_conv_info": [1, 7], "relax_gradient_valu": [1, 7], "relax_info": [1, 7], "rij_info": [1, 7], "riper_scf_energi": [1, 7], "s2": [1, 7], "scf_energi": [1, 7], "scf_iter": [1, 7], "statpt_info": [1, 7], "string": [1, 2, 3, 4, 6, 7, 8, 9, 14, 15, 16, 18, 20, 23], "time": [1, 4, 7, 14, 15, 19, 22, 23], "convert_float": [1, 7], "convert_int": [1, 7], "convert_time_str": [1, 7], "eigeroutput": [1, 7], "compare_st": [1, 7], "eigerrunn": [1, 7], "get_eiger_output": [1, 7], "run": [1, 2, 4, 7, 9, 12, 14, 16, 18, 19, 21, 22], "has_fractional_occ": [1, 7], "max_occup": [1, 7], "eigenvalu": [1, 7, 19, 23], "filter_st": [1, 7], "gap": [1, 7, 23], "generate_lowest_filled_st": [1, 7], "has_hol": [1, 7, 23], "homo": [1, 7], "homo_index": [1, 7], "insert": [1, 7, 15], "irrep_indic": [1, 7], "lumo": [1, 7], "lumo_index": [1, 7], "n_state": [1, 7], "occup": [1, 2, 7, 23], "spin": [1, 7, 23], "get_mos_energi": [1, 7], "itestconfig": [1, 9], "define_timeout": [1, 9], "delete_tmp_dir": [1, 3, 6, 8, 9, 19], "dryrun": [1, 9, 19], "dryrun_fpath": [1, 9], "dryrun_use_ref_control": [1, 9], "generate_ref": [1, 9], "tol": [1, 2, 7, 9, 19], "itesterror": [1, 9], "assert_mson": [1, 9], "assert_almost_equ": [1, 9, 19], "compare_differ": [1, 9], "generate_control_for_test": [1, 9], "generate_reference_out_parser_fil": [1, 9], "generate_reference_output": [1, 9], "get_control_filepath": [1, 9], "get_control_integr": [1, 9], "get_sp": [1, 9], "get_tfp": [1, 9], "gisnan": [1, 9], "has_matplotlib": [1, 9], "run_itest": [1, 9, 19], "temp_dir": [1, 9, 19], "touch_fil": [1, 9], "i": [1, 2, 3, 4, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "act": [1, 14], "an": [1, 2, 4, 7, 9, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "interfac": [1, 4, 9, 12, 21, 22], "turbomol": [1, 2, 7, 9, 11, 12, 13, 14, 15, 16, 18, 20, 21, 23], "It": [1, 2, 3, 7, 14, 15, 17, 18, 19, 22], "allow": [1, 2, 4, 7, 8, 9, 13, 14, 15, 16, 18, 19, 22], "gener": [1, 2, 4, 7, 8, 9, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23], "pars": [1, 2, 7, 8, 12, 13, 14, 16, 20, 21], "easili": [1, 7, 15, 18, 19, 23], "thi": [1, 2, 4, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "root": [1, 7, 19, 23], "testcontrol": [2, 3], "test_add_cosmo": [2, 3, 4, 6], "test_cpc": [2, 3], "test_disp": [2, 3], "test_energi": [2, 3], "test_from_fil": [2, 3], "test_from_metr": [2, 3], "test_get_charg": [2, 3], "test_get_shel": [2, 3], "test_get_subfiles_list": [2, 3], "test_gradi": [2, 3], "test_is_uhf": [2, 3], "test_remove_energi": [2, 3], "test_remove_energy_in_control": [2, 3], "test_remove_gradi": [2, 3], "test_remove_gradient_in_control": [2, 3], "testdatagroupfunct": [2, 3], "pytestmark": [2, 3, 19], "test_adg": [2, 3], "test_cdg": [2, 3], "test_kdg": [2, 3], "test_mdgo": [2, 3], "test_sdg": [2, 3], "test_sdgo": [2, 3], "testenergi": [2, 3], "test_energy_mp2": [2, 3], "test_energy_scf": [2, 3], "testgradi": [2, 3], "test_empty_gradi": [2, 3], "test_fail_pars": [2, 3], "testshel": [2, 3], "test_clos": [2, 3, 4, 6, 7, 8], "test_fract": [2, 3], "test_uhf": [2, 3, 7, 8], "check_equivalent_dg": [2, 3], "test_cleanup": [2, 3], "test_compar": [2, 3], "test_compare_datagroup_str": [2, 3], "test_empti": [2, 3], "test_modify_data_group_opt": [2, 3], "test_remove_com": [2, 3], "test_remove_dg_from_list": [2, 3], "test_sdg_subfil": [2, 3], "test_show_data_group_opt": [2, 3], "test_show_subfile_fnam": [2, 3], "test_split_string_to_dg_list": [2, 3], "testinternaldefinit": [2, 3], "test_bond_angl": [2, 3], "test_collinear_bending_angl": [2, 3], "test_dihedral_angl": [2, 3], "test_dist": [2, 3], "test_from_str": [2, 3], "test_inverse_dist": [2, 3], "test_out_of_plane_angl": [2, 3], "test_perpendicular_bending_angl": [2, 3], "testmoleculesystem": [2, 3], "test_add_bond_angl": [2, 3], "test_add_dihedr": [2, 3], "test_add_dist": [2, 3], "test_check_index": [2, 3], "test_disord": [2, 3], "test_dummy_atom": [2, 3], "test_to_coord_str": [2, 3], "test_to_fil": [2, 3], "check_dg": [2, 3], "check_user_defined_bonds_dg": [2, 3], "testperiodicsystem": [2, 3], "test_periodic_2d": [2, 3], "test_periodic_3d": [2, 3], "test_periodic_wrong_rot": [2, 3], "test_read_periodic_2d": [2, 3], "testgetvers": [2, 3], "test_v72": [2, 3], "test_v731": [2, 3], "test_v741": [2, 3], "test_v751": [2, 3], "object": [2, 3, 4, 6, 7, 8, 9, 12, 13, 15, 16, 17, 18, 19, 21, 22], "repres": [2, 3, 7, 13, 15, 19, 22], "physic": [2, 7, 19, 22], "system": [2, 4, 7, 12, 14, 15, 19, 21, 22, 23], "class": [2, 3, 4, 6, 7, 8, 9, 18, 19, 22, 23], "molecule_or_structur": 2, "frozen_indic": [2, 13], "none": [2, 4, 6, 7, 8, 9, 14, 15, 18, 23], "0": [2, 4, 7, 9, 13, 19, 20, 21, 22, 23], "sourc": [2, 3, 4, 6, 7, 8, 9, 17, 19, 21, 22], "msonabl": [2, 7, 9, 21, 23], "common": [2, 7, 15, 18, 21, 22], "construct": [2, 4, 7, 8, 15], "paramet": [2, 3, 4, 6, 7, 8, 9, 16, 19, 21], "pymatgen": [2, 13, 21], "set": [2, 3, 4, 7, 9, 13, 14, 15, 16, 18, 19, 21, 23], "indic": [2, 7, 13, 22], "atom": [2, 7, 12, 13, 15], "should": [2, 3, 4, 6, 7, 8, 9, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "have": [2, 6, 13, 14, 15, 17, 18, 19, 21, 22, 23], "fix": [2, 16, 19, 20, 21, 22], "cartesian": [2, 7, 13], "1": [2, 7, 9, 13, 15, 19, 20, 21, 22, 23], "2": [2, 4, 7, 9, 13, 15, 19, 21, 22], "3": [2, 7, 13, 15, 17, 19, 20, 21, 22], "give": [2, 11, 19, 22], "line": [2, 3, 7, 13, 14, 15, 18, 19, 22], "coord": [2, 3, 4, 7, 9, 14, 15, 19, 21], "intern": [2, 4, 7, 13, 14, 15, 16, 23], "return": [2, 3, 4, 6, 7, 9, 14, 15, 16, 18, 19, 22, 23], "list": [2, 3, 4, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 22, 23], "type": [2, 3, 4, 7, 8, 9, 13, 14, 15, 16, 21, 22, 23], "filepath": [2, 4, 7], "write": [2, 7, 14, 18, 21, 22], "str": [2, 3, 4, 7, 9, 15], "path": [2, 4, 7, 9, 14, 15, 16, 19, 23], "abstract": [2, 7, 17, 18], "creat": [2, 4, 7, 9, 12, 15, 16, 18, 19, 20, 23], "implement": [2, 4, 9, 14, 15, 16, 17, 18, 19, 22, 23], "separ": [2, 6, 8, 14, 19, 22], "fmt": 2, "depend": [2, 4, 7, 15, 18, 19], "specifi": [2, 7, 9, 11, 14, 15, 22], "format": [2, 7, 13, 14, 17, 19, 21, 22], "The": [2, 3, 4, 7, 8, 9, 16, 17, 18, 20, 21, 22], "can": [2, 4, 7, 9, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "ani": [2, 7, 9, 14, 15, 16, 19, 22], "other": [2, 4, 6, 7, 8, 9, 13, 14, 15, 16, 17, 18, 19, 22, 23], "support": [2, 7, 9, 14, 15, 17, 18, 19, 20, 22], "could": [2, 7, 13, 16, 18, 19, 22, 23], "If": [2, 4, 7, 8, 9, 14, 15, 16, 18, 19, 22, 23], "code": [2, 4, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "would": [2, 7, 13, 15, 16, 17, 18, 19, 22, 23], "try": [2, 11, 14, 16], "infer": 2, "from": [2, 3, 4, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "name": [2, 3, 4, 7, 8, 9, 14, 15, 16, 18, 19, 22, 23], "contain": [2, 7, 9, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23], "convert": [2, 4, 7, 9, 14, 17, 18, 23], "frozen": [2, 7, 13], "f": [2, 7, 13, 22], "append": [2, 9, 13, 19], "end": [2, 4, 7, 9, 13, 14, 15, 18, 22], "cell_str": 2, "periodic_str": 2, "lattice_str": 2, "periodic_extens": 2, "5": [2, 12, 13, 15, 19, 20, 21, 22], "get": [2, 6, 7, 9, 14, 18, 19, 22], "cell": 2, "For": [2, 7, 11, 13, 14, 15, 16, 18, 19, 20, 22, 23], "1d": [2, 7], "consist": [2, 12, 22], "singl": [2, 7, 9, 14, 15, 18, 19, 20, 22, 23], "number": [2, 3, 7, 9, 14, 15, 20, 22], "lattic": [2, 7, 12], "2d": [2, 7], "b": [2, 4, 7, 14, 15, 22], "gamma": [2, 7], "angl": [2, 7], "between": [2, 7, 9, 14, 15, 19, 21, 22], "3d": [2, 7], "6": [2, 7, 15, 19, 21, 22], "c": [2, 7, 14, 15, 22], "alpha": [2, 7, 14, 15], "beta": [2, 7, 14, 15], "onli": [2, 4, 7, 8, 9, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "both": [2, 9, 14, 18, 19, 22, 23], "describ": [2, 4, 7, 14, 16, 17, 18, 19, 23], "matrix": [2, 7, 15], "float": [2, 3, 4, 7, 9, 15, 18], "amount": [2, 19, 21], "angstrom": [2, 7, 13, 15], "artifici": 2, "ad": [2, 14, 15, 16, 18, 19, 21, 22], "vacuum": 2, "non": [2, 7, 22], "direct": [2, 7, 19, 22], "when": [2, 4, 7, 13, 14, 15, 16, 17, 18, 19, 20, 22], "ar": [2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "provid": [2, 4, 7, 8, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "namedtupl": [2, 7], "function": [2, 3, 4, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 20, 22, 23], "interact": [2, 14, 15, 22, 23], "directli": [2, 7, 14, 15, 16, 18, 19, 22, 23], "also": [2, 4, 7, 11, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "relat": [2, 4, 12, 15, 23], "e": [2, 4, 7, 11, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "g": [2, 4, 7, 11, 14, 15, 18, 19, 20, 23], "etc": 2, "dg_list": [2, 14], "us": [2, 4, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "store": [2, 7, 8, 9, 12, 13, 14, 15, 18, 19, 20, 21, 23], "group": [2, 3, 13, 15, 16, 18, 19, 21, 23], "A": [2, 7, 8, 12, 14, 15, 17, 18, 19, 22], "kei": [2, 7, 9, 14, 15, 22], "valu": [2, 3, 4, 7, 8, 9, 13, 15, 16, 18, 19, 21, 23], "pair": 2, "specif": [2, 4, 6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "mai": [2, 6, 7, 12, 14, 18, 19, 22], "seri": [2, 14, 18, 19, 20, 21, 23], "combin": [2, 7, 15, 18, 22], "thereof": 2, "initi": [2, 7, 14, 19, 22, 23], "usual": [2, 7, 14, 15, 18, 23], "read": [2, 7, 13, 14, 19, 20, 21, 22, 23], "epsilon": [2, 4, 7, 15], "nppa": [2, 4, 7, 15], "nspa": [2, 4, 7, 15], "disex": [2, 4, 7, 15], "rsolv": [2, 4, 7, 15], "routf": [2, 4, 7, 15], "caviti": [2, 4, 7, 15], "use_old_amat": [2, 4, 15], "add": [2, 7, 14, 15, 16, 18, 19, 20, 22], "cosmo": [2, 3, 7, 15, 23], "keyword": [2, 7, 9, 14, 15], "option": [2, 4, 7, 9, 13, 14, 15, 16, 18, 19, 22, 23], "all": [2, 3, 4, 6, 7, 8, 9, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "written": [2, 4, 13, 14, 17, 19, 22, 23], "permitt": [2, 15], "scale": [2, 15], "screen": [2, 7, 15], "charg": [2, 4, 7, 15, 18, 22, 23], "int": [2, 4, 7, 15], "grid": [2, 7, 15, 23], "point": [2, 7, 15, 16, 18, 19, 20], "per": [2, 7, 15], "segment": [2, 15], "threshold": [2, 7, 15, 23], "element": [2, 3, 7, 9, 14, 15], "outer": [2, 15], "solvent": [2, 15], "sphere": [2, 15], "factor": [2, 7, 15], "outli": [2, 15], "correct": [2, 7, 8, 9, 12, 14, 15, 16, 19, 22, 23], "accept": [2, 15, 16, 17, 18, 22], "open": [2, 11, 14, 15, 21], "leav": [2, 15, 19], "untidi": [2, 15], "seam": [2, 15], "close": [2, 7, 14, 15, 22], "pave": [2, 15], "intersect": [2, 15], "bool": [2, 4, 7, 8, 9, 15], "true": [2, 3, 4, 7, 8, 9, 13, 14, 15, 19], "setup": [2, 15, 19, 20], "7": [2, 12, 15, 19, 20, 21, 22], "dest_dir": 2, "force_overwrit": 2, "fals": [2, 4, 7, 8, 9, 14, 15, 19], "copi": [2, 4, 15, 22], "referenc": [2, 19], "here": [2, 7, 8, 9, 14, 16, 17, 18, 19, 23], "destin": 2, "folder": [2, 4, 8, 9, 12, 14, 15, 17, 18, 19], "alreadi": [2, 4, 8, 14, 15, 16, 18, 19, 22], "exist": [2, 9, 13, 14, 15, 16, 18, 19], "present": [2, 4, 7, 13, 14, 15, 17, 19, 22], "overwritten": [2, 8], "properti": [2, 7, 8, 13, 18, 22, 23], "absent": [2, 7], "miss": [2, 7, 14, 15, 18], "classmethod": [2, 7], "filenam": [2, 7, 9], "given": [2, 3, 4, 7, 9, 13, 14, 15, 16, 18, 19, 20, 22, 23], "which": [2, 7, 8, 9, 11, 13, 14, 16, 18, 19, 22, 23], "new": [2, 7, 11, 12, 14, 15, 16, 17, 20, 21, 22], "redund_inp": 2, "extract": [2, 7, 12, 14, 15, 18, 19, 21, 23], "xxx": 2, "shells_typ": 2, "instanc": [2, 7, 9, 13, 14, 15, 16, 18, 23], "form": [2, 9, 13, 15, 22, 23], "grad": [2, 7, 12, 23], "determin": [2, 7, 9, 13, 14, 15, 19, 22, 23], "uhf": [2, 7, 14, 15, 23], "backup_suffix": 2, "remov": [2, 3, 7, 9, 14, 18, 19, 22], "last": [2, 7, 13, 23], "step": [2, 7, 14, 15, 22, 23], "In": [2, 3, 7, 8, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "addit": [2, 3, 9, 12, 13, 14, 15, 16, 18, 19, 20, 22, 23], "origin": [2, 9, 14, 19, 22], "locat": [2, 17, 19], "n": [2, 4, 13, 15], "extern": [2, 11, 19, 23], "call": [2, 6, 7, 13, 14, 15, 16, 18, 19, 22, 23], "current": [2, 4, 7, 12, 14, 15, 17, 18, 19, 21], "modif": [2, 9, 12, 19, 20, 22], "been": [2, 4, 6, 7, 12, 15, 16, 18, 19, 21, 22, 23], "done": [2, 6, 7, 8, 13, 14, 15, 16, 19], "well": [2, 12, 13, 15, 18, 19, 20, 22, 23], "case": [2, 3, 4, 7, 8, 9, 14, 15, 16, 17, 18, 19, 22], "ignor": [2, 3, 7, 15], "rais": [2, 3, 4, 7, 9, 14, 15, 16, 19], "runtimeerror": [2, 7], "dispersion_correct": [2, 7], "dispers": [2, 7, 14, 15, 23], "method": [2, 4, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 22, 23], "dft": [2, 4, 7, 14, 15, 23], "d1": [2, 4, 7, 15], "d2": [2, 4, 7, 15], "d3": [2, 4, 15], "bj": [2, 4, 15], "insensit": 2, "disp": [2, 4, 15], "elimin": 2, "collect": [2, 19, 22, 23], "tm": [2, 7], "execut": [2, 4, 7, 9, 14, 15, 16, 18, 19, 20, 21, 22, 23], "some": [2, 4, 7, 9, 12, 14, 15, 16, 18, 19, 22, 23], "scf": [2, 7, 15, 23], "scfkin": 2, "scfpot": 2, "mp2": [2, 4, 7, 12, 15, 23], "calcul": [2, 7, 8, 9, 12, 13, 15, 16, 18, 19, 21, 23], "kinet": [2, 7], "contribut": [2, 7, 11, 16, 19, 23], "potenti": [2, 7, 13, 16, 18], "total": [2, 7], "count": 2, "variat": 2, "less": [2, 23], "than": [2, 7, 14, 15, 18, 22, 23], "come": [2, 7, 15, 18, 19, 22, 23], "subfil": [2, 14, 23], "ax": [2, 7], "kwarg": [2, 3, 7], "evolut": [2, 7, 14], "matplotlib": [2, 7, 9], "figur": [2, 7, 15], "argument": [2, 4, 7, 9, 14, 15, 19], "pass": [2, 4, 7, 9, 14, 15, 16, 19, 22], "displai": [2, 7, 22], "mean": [2, 7, 12, 14, 18, 19, 22, 23], "titl": [2, 4, 7, 15], "show": [2, 7, 22], "savefig": [2, 7], "abc": [2, 7, 23], "png": [2, 7], "ep": [2, 7], "save": [2, 7], "size_kwarg": [2, 7], "dictionari": [2, 4, 7, 9, 14, 15, 16, 18, 23], "fig": [2, 7], "set_size_inch": [2, 7], "dict": [2, 4, 7, 9, 15], "w": [2, 7, 22], "h": [2, 7], "4": [2, 4, 7, 12, 13, 15, 19, 20, 21, 22], "tight_layout": [2, 7], "ax_grid": [2, 7], "left": [2, 7], "unchang": [2, 7], "ax_annot": [2, 7], "label": [2, 7], "subplot": [2, 7], "fig_clos": [2, 7], "lattice_vector": 2, "lattice_gradi": 2, "shape": [2, 7], "nstep": 2, "natom": [2, 7], "each": [2, 7, 9, 13, 14, 15, 18, 19, 22, 23], "perform": [2, 6, 7, 9, 12, 13, 14, 15, 16, 18, 19, 22, 23], "riper": [2, 7, 12, 23], "vector": [2, 7], "size": [2, 7, 15, 23], "dimension": [2, 12, 13], "one": [2, 3, 4, 7, 8, 9, 13, 14, 15, 16, 18, 19, 22, 23], "note": [2, 7, 9, 12, 13, 14, 15, 18, 19, 21, 23], "either": [2, 18, 19, 22], "differ": [2, 3, 7, 8, 9, 13, 14, 15, 16, 18, 19, 20, 22, 23], "One": [2, 7], "thu": [2, 15, 16, 18, 19, 20, 22, 23], "gradlatt": 2, "maximum": [2, 4, 7, 15], "largest": 2, "map": 2, "handl": [2, 4, 7, 12, 18], "integ": [2, 4], "fraction": [2, 7, 19], "presenc": [2, 14, 19], "same": [2, 3, 7, 13, 14, 18, 19, 22, 23], "multipl": [2, 7, 15, 19], "tupl": [2, 7, 8, 9, 13], "irrep_index": [2, 7], "occupi": [2, 7, 14, 23], "json": [2, 3, 7, 8, 9, 15, 18, 19, 21], "serializ": [2, 7], "represent": [2, 7, 14, 23], "d": [2, 7, 19, 22], "serial": [2, 12, 18, 19], "valueerror": [2, 7], "exampl": [2, 7, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "a1": [2, 7, 15], "b1": [2, 7], "b2": [2, 7], "irreduc": [2, 7, 14, 23], "electron": [2, 7, 15, 22], "data_group": [2, 14], "data_block": [2, 14], "backup_fil": 2, "comment": [2, 3, 14, 15, 17], "dollar": [2, 14], "sign": [2, 14, 22], "automat": [2, 7, 12, 13, 14, 16, 17, 19, 22], "block": [2, 14], "correspond": [2, 7, 8, 13, 14, 16, 18, 19, 20, 22], "back": [2, 9, 19, 23], "up": [2, 14, 15, 18, 19], "backup": 2, "replac": [2, 14, 19], "equival": [2, 3, 7, 9, 14, 18, 19, 22], "To": [2, 14, 19, 20, 22], "explicit": [2, 9, 14, 19], "simpli": [2, 7, 14, 16, 18], "control_dir": 2, "its": [2, 4, 7, 8, 13, 14, 15, 16, 19, 22, 23], "anoth": [2, 14, 19], "doe": [2, 14, 15, 22, 23], "directori": [2, 4, 7, 9, 14, 15, 19], "dir": 2, "strict": [2, 14, 19], "exact": [2, 14, 18, 22], "match": [2, 6, 7, 14, 19], "start": [2, 7, 14, 15, 16, 18, 19, 20, 21, 22], "modifi": [2, 7, 15, 16, 18, 19, 20, 21, 22], "sever": [2, 7, 18, 19, 21, 23], "updat": [2, 4, 7, 12, 14, 15, 18, 19, 20, 22], "accord": [2, 4, 7, 14, 15, 16, 17, 22], "option_name1": 2, "option_valu": 2, "option_name2": 2, "identifi": [2, 7, 9, 14, 16, 19, 20, 22], "entir": [2, 14, 18, 19, 22], "sinc": [2, 9, 14, 15, 16, 17, 18, 19, 23], "wai": [2, 4, 7, 14, 15, 16, 18, 19, 21, 22, 23], "attempt": [2, 22], "made": [2, 18, 22], "suitabl": [2, 7, 16, 17, 18, 19], "respons": [2, 14, 15, 16, 22], "caller": 2, "safer": 2, "chang": [2, 4, 7, 8, 13, 14, 17, 18, 20, 21, 22], "show_from_subfil": [2, 14], "raise_if_multiple_subfil": 2, "raise_if_missing_subfil": 2, "raise_if_regular_and_subfil": 2, "full": [2, 7, 9, 14, 15, 16, 21, 22], "just": [2, 14, 15, 18, 23], "so": [2, 14, 15, 16, 18, 19, 21, 22, 23], "correctli": [2, 18, 19], "within": [2, 7, 9, 15, 22], "suppos": 2, "whether": [2, 7, 9, 19, 22], "error": [2, 4, 7, 9, 14, 15, 16, 19], "standard": [2, 4, 7, 14, 15, 17, 22], "refer": [2, 3, 8, 9, 12, 13, 14, 16, 18, 19, 22], "regular": [2, 18, 23], "select": [2, 7, 14, 15], "found": [2, 4, 7, 9, 14, 17, 18, 19, 21, 22, 23], "includ": [2, 7, 14, 16, 21, 22], "anyth": [2, 22], "after": [2, 7, 14, 15, 16, 18, 19, 22], "symbol": [2, 7, 13, 14], "like": [2, 4, 7, 8, 9, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23], "queri": 2, "model": [2, 22], "manipul": 2, "convent": [2, 13, 14, 16, 17, 19], "fashion": [2, 22], "mani": 2, "human": 2, "readabl": [2, 22], "ascii": 2, "formal": 2, "split": [2, 3, 7, 14], "optim": [2, 7, 13, 14], "associ": [2, 7, 22, 23], "word": [2, 14], "veri": [2, 16, 18, 19], "larg": [2, 15], "molecular": [2, 4, 7, 15], "orbit": [2, 4, 7, 15, 23], "scfmo": [2, 23], "mo": [2, 7, 15], "complet": [2, 4, 7, 13, 14, 15, 16, 23], "descript": [2, 7, 16, 19, 23], "user": [2, 3, 8, 13, 14, 15, 16, 17, 18, 22, 23], "": [2, 7, 16, 18, 21, 22], "manual": [2, 15], "avail": [2, 4, 7, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23], "unnecessari": [2, 22], "space": [2, 3, 7, 14], "kept": [2, 18, 19], "appli": [2, 12, 14, 15, 19, 22], "interfer": 2, "actual": [2, 7, 9, 15, 19, 22], "alwai": [2, 4, 7, 9, 13, 14, 16, 18, 19], "first": [2, 3, 4, 7, 9, 12, 14, 16, 18, 19, 22, 23], "move": [2, 14, 19], "befor": [2, 4, 7, 9, 14, 15, 16, 18, 19, 21, 23], "ignored_dg": 2, "return_all_diff": 2, "asid": [2, 19], "two": [2, 3, 7, 9, 15, 19, 22], "chunk": [2, 7], "exactli": [2, 6, 18, 19], "except": [2, 3, 4, 6, 7, 9, 14, 15, 17, 19, 22], "thei": [2, 4, 7, 9, 13, 14, 17, 18, 19, 21, 22, 23], "lower": [2, 7, 19, 23], "toler": [2, 7, 9, 15, 18, 19], "otherwis": [2, 4, 7, 15, 18, 19, 22], "messag": [2, 4, 7, 9], "caus": [2, 22], "fail": [2, 3, 4, 7, 8, 9, 15, 16, 19, 22, 23], "varieti": [2, 15], "notat": [2, 7], "intend": [2, 19, 22], "more": [2, 13, 14, 16, 17, 18, 19, 21, 22, 23], "purpos": [2, 22], "rather": 2, "tool": [2, 4, 16, 19, 21, 22], "guarante": [2, 22], "even": [2, 4, 7, 9, 15, 16, 19, 22], "comparison": [2, 3, 9, 19], "expect": [2, 4, 6, 7, 9, 12, 15, 16, 19, 22], "skip": [2, 4, 9, 16], "result": [2, 7, 13, 14, 15, 19, 22, 23], "occurr": [2, 7], "coexist": 2, "shown": [2, 14, 19], "anywai": [2, 15, 19], "cleanup_typ": 2, "clean": [2, 12, 14], "everyth": [2, 14], "blank": [2, 14], "tab": [2, 14], "typic": [2, 14, 15, 22], "cleanup": [2, 3], "valid": [2, 4, 7, 14, 21, 22], "before_first_dollar": 2, "blank_lin": 2, "leading_spaces_dollar": 2, "leading_spaces_hash": 2, "four": 2, "hash": 2, "preced": [2, 7], "charact": 2, "dg1": [2, 3], "dg2": [2, 3], "second": [2, 3, 7, 15, 19, 23], "comment_typ": 2, "inform": [2, 4, 7, 11, 12, 13, 18, 19, 22, 23], "three": [2, 7, 15, 22, 23], "dummi": [2, 14], "span": 2, "inlin": [2, 14], "newlin": 2, "hash_start": 2, "after_end": 2, "hash_inlin": 2, "without": [2, 4, 8, 12, 13, 14, 18, 19, 22], "dg_to_remov": 2, "duplic": 2, "usag": 2, "follow": [2, 4, 7, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "remove_comment_typ": 2, "five": 2, "incorrectli": 2, "respect": [2, 7, 14, 19, 22, 23], "redund": [2, 13, 18], "off": [2, 7, 16], "global": [2, 19], "statu": [2, 13, 22], "weight": 2, "bond": [2, 3, 13], "bend": [2, 13], "k": [2, 13, 19], "involv": [2, 18], "linear": 2, "consid": [2, 4, 7, 14, 15, 16, 18, 19, 22, 23], "length": [2, 7], "collinear": 2, "linc": 2, "dihedr": 2, "tor": [2, 13], "stre": [2, 13], "definit": [2, 7, 9, 12, 13, 15, 19, 22], "establish": 2, "notimpl": 2, "concret": 2, "subclass": [2, 7, 9, 13, 14, 15, 16, 18, 19, 23], "intdef": [2, 3, 13], "static": [2, 6], "appropri": [2, 18, 19, 22], "0001": [2, 9], "check": [2, 3, 4, 6, 7, 9, 12, 14, 15, 16, 18, 19, 23], "posit": [2, 7], "index": [2, 7, 21, 23], "prepend": [2, 14], "insid": [2, 9, 15, 16, 18, 19, 22], "invers": 2, "invr": 2, "int_def": [2, 13], "user_defined_bond": [2, 13], "about": [2, 7, 11, 13, 15, 16, 18, 19, 21, 22, 23], "geometri": [2, 4, 7, 13, 14, 15, 23], "dynam": [2, 13, 15, 22], "while": [2, 13, 14, 15, 16, 18, 19], "constraint": [2, 18], "attribut": [2, 9, 13, 14, 15, 16, 18, 19, 22, 23], "notabl": 2, "inconsist": 2, "obtain": [2, 7, 8, 14, 18, 23], "order": [2, 3, 6, 7, 15, 16, 19, 22, 23], "index1": [2, 13], "index2": [2, 13], "where": [2, 4, 7, 13, 14, 15, 16, 18, 19, 22, 23], "atom1": [2, 13], "atom2": [2, 13], "vertex": [2, 13], "add_user_def_bond": 2, "simpl": [2, 7, 15], "produc": [2, 7, 9, 13, 15, 16, 19, 22, 23], "those": [2, 8, 13, 15, 18, 19, 22], "atom3": 2, "atom4": 2, "third": [2, 22], "fourth": 2, "overwrit": [2, 8, 18, 19], "atol": [2, 9], "ltol": 2, "whose": [2, 14, 17, 22], "bohr": [2, 13], "degre": 2, "out": [2, 7, 15, 22, 23], "plane": [2, 7], "outp": 2, "linp": 2, "miscellan": 2, "quit": [2, 4], "send": [2, 15, 16], "qq": [2, 15], "version": [2, 7, 9, 11, 12, 14, 17, 18, 21, 22, 23], "basic": [2, 7, 14, 17, 19, 22, 23], "exit": 2, "begin": [2, 14], "testdir": [3, 8], "instanti": [3, 18, 23], "mark": [3, 14, 18, 19, 22], "parametr": 3, "arg": 3, "control_filenam": 3, "control_test": 3, "control_filepath": 3, "variabl": [3, 4, 13], "repetit": 3, "white": 3, "import": [3, 9, 13, 14, 15, 17, 19, 22, 23], "param": 3, "molecule_filenam": 3, "ch4": 3, "molecule_filepath": 3, "to_test": 3, "ref": [3, 19], "helper": [3, 8, 13, 16, 18, 19, 23], "treat": [3, 7, 22], "them": [3, 4, 7, 13, 14, 16, 18, 19, 21, 22, 23], "approx": 3, "intedef": 3, "assum": [3, 19, 22], "val": [3, 13], "through": [3, 4, 8, 13, 14, 15, 16, 22, 23], "assert": [3, 9, 22], "properli": [3, 4], "sort": [3, 7, 23], "structure_filepath": 3, "testdefinerunn": [4, 6], "assert_sendline_cal": [4, 6], "assert_sendline_has_cal": [4, 6], "test_add_atomic_coordinates_from_fil": [4, 6], "test_add_atomic_coordinates_from_file_cartesian": [4, 6], "test_copy_mo_files_ab_mo": [4, 6], "test_copy_mo_files_alpha_beta": [4, 6], "test_copy_mo_files_error": [4, 6], "test_copy_mo_files_mo": [4, 6], "test_define_basis_set": [4, 6], "test_define_core_potenti": [4, 6], "test_define_symmetri": [4, 6], "test_define_symmetry_error": [4, 6], "test_determine_symmetri": [4, 6], "test_determine_symmetry_ep": [4, 6], "test_dump_command_fil": [4, 6], "test_excited_state_menu_error_not_activ": [4, 6], "test_excited_state_menu_frequ": [4, 6], "test_excited_state_menu_irrep": [4, 6], "test_excited_state_menu_irrep_wrong_sym": [4, 6], "test_excited_state_menu_polli": [4, 6], "test_excited_state_menu_rpa": [4, 6], "test_excited_state_menu_urpa": [4, 6], "test_excited_state_menu_urpa_error": [4, 6], "test_excited_state_menu_wrong_ex_method": [4, 6], "test_excited_state_menu_wrong_menu": [4, 6], "test_existing_coordin": [4, 6], "test_existing_coordinates_cartesian": [4, 6], "test_existing_coordinates_error": [4, 6], "test_existing_coordinates_no_upd": [4, 6], "test_existing_coordinates_unsupport": [4, 6], "test_expect": [4, 6], "test_expect_raise_eof": [4, 6], "test_expect_raise_timeout": [4, 6], "test_extended_hueckel_theory_menu_charg": [4, 6], "test_extended_hueckel_theory_menu_default": [4, 6], "test_extended_hueckel_theory_menu_error": [4, 6], "test_extended_hueckel_theory_menu_nocharg": [4, 6], "test_extended_hueckel_theory_menu_unpair": [4, 6], "test_general_menu_ccsdt": [4, 6], "test_general_menu_dft": [4, 6], "test_general_menu_hf": [4, 6], "test_general_menu_wrong_method": [4, 6], "test_generate_internal_coordin": [4, 6], "test_generate_internal_coordinates_error": [4, 6], "test_geometry_menu_copymo": [4, 6], "test_geometry_menu_incompatibility_1": [4, 6], "test_geometry_menu_incompatibility_2": [4, 6], "test_geometry_menu_new_coords_1": [4, 6], "test_geometry_menu_new_coords_2": [4, 6], "test_geometry_menu_new_coords_3": [4, 6], "test_geometry_menu_new_coords_4": [4, 6], "test_geometry_menu_no_new_coord": [4, 6], "test_get_bin_path": [4, 6], "test_go_to_general_menu": [4, 6], "test_init": [4, 6], "test_initialize_control_1": [4, 6], "test_initialize_control_2": [4, 6], "test_initialize_control_incompat": [4, 6], "test_is_al": [4, 6], "test_postprocess": [4, 6], "test_quit_general_menu": [4, 6], "test_run_full_1": [4, 6], "test_run_full_2": [4, 6], "test_run_generate_mo_fil": [4, 6], "test_run_generate_mo_files_sym": [4, 6], "test_run_update_internal_coord": [4, 6], "test_run_update_internal_coords_error": [4, 6], "test_sendlin": [4, 6], "test_set_basi": [4, 6], "test_set_basis_error": [4, 6], "test_set_basis_error_2": [4, 6], "test_set_basis_error_3": [4, 6], "test_set_dft_options_no_dft": [4, 6], "test_set_dft_options_use_dft": [4, 6], "test_set_dft_options_wrong_xc": [4, 6], "test_set_ecp_error": [4, 6], "test_set_ecp_error_2": [4, 6], "test_set_ecp_error_3": [4, 6], "test_set_metr": [4, 6], "test_set_mo_from_control_fil": [4, 6], "test_set_mo_from_control_file_2": [4, 6], "test_set_mo_from_control_file_error": [4, 6], "test_set_mo_from_control_file_longpath": [4, 6], "test_set_mp2_opt": [4, 6], "test_set_mp2_options_f12": [4, 6], "test_set_mp2_options_geoopt": [4, 6], "test_set_mp2_options_mp2": [4, 6], "test_set_mp2_options_mp2_error": [4, 6], "test_set_ri_st": [4, 6], "test_set_ri_state_marij": [4, 6], "test_set_scf_opt": [4, 6], "test_skip_atomic_attribute_menu": [4, 6], "test_skip_atomic_attribute_menu_error": [4, 6], "test_skip_atomic_attribute_menu_intern": [4, 6], "test_switch_to_atomic_attribute_menu": [4, 6], "test_switch_to_atomic_attribute_menu_intern": [4, 6], "test_switch_to_atomic_attribute_menu_internal_error": [4, 6], "test_switch_to_molecular_orbital_definition_menu": [4, 6], "test_switch_to_scf_menu": [4, 6], "testexcept": [4, 6], "test_creat": [4, 6], "dr_data": [4, 6, 16], "test_get_define_templ": [4, 6], "test_validate_paramet": [4, 6], "pattern": [4, 15, 22], "go": [4, 15, 19], "timeout": [4, 15], "eof": 4, "problem": [4, 7, 9, 11, 15, 16, 18, 22], "incomplet": 4, "ir": [4, 7, 13, 15], "happen": [4, 14, 15, 16, 18, 19], "incompat": [4, 17, 19, 20, 22], "among": [4, 7, 14, 15, 19, 22], "previou": [4, 7, 12, 15, 18, 19, 22, 23], "60": [4, 15, 22], "log_filepath": 4, "log": [4, 12, 20, 21], "workdir": 4, "use_popen": 4, "pexpect": [4, 15], "commun": [4, 18, 22], "avoid": [4, 7, 14, 16, 19, 22], "side": [4, 14, 19, 23], "effect": [4, 14, 19, 22], "dure": [4, 13, 14, 18], "wait": 4, "search": [4, 7, 21], "environ": [4, 11, 19], "popen_spawn": 4, "popenspawn": 4, "popen": 4, "spawn": [4, 15, 16], "pty": 4, "define_command": 4, "dump": [4, 7], "command": [4, 6, 7, 9, 14, 15, 16, 19, 22], "behavior": [4, 14, 16, 19], "menu": [4, 15, 16, 22], "job": [4, 7, 9, 15], "reach": 4, "being": [4, 7, 14, 15, 19, 22], "normal": [4, 7, 22, 23], "abnorm": [4, 15], "regener": [4, 9, 12, 15, 19, 22], "must": [4, 22], "usemo": [4, 15], "taken": [4, 9, 19, 21], "scratch": 4, "extend": [4, 15, 22], "hueckel": [4, 15], "guess": [4, 15], "edit": 4, "least": [4, 6, 16, 18, 19, 22], "enabl": [4, 15, 21, 22], "enter": [4, 22], "sym": [4, 15], "desi": [4, 15], "notic": [4, 7, 12, 13, 19, 22], "disabl": [4, 15], "termin": [4, 15, 22], "similar": [4, 14, 18, 22, 23], "afterward": [4, 13, 15], "were": [4, 6, 7, 14, 19, 22], "successfulli": [4, 9], "unexpect": 4, "proper": [4, 7], "ha": [4, 7, 8, 12, 13, 14, 15, 16, 18, 19, 22, 23], "do": [4, 9, 16, 17, 18, 21, 22], "schema": [4, 15, 16], "excit": [4, 7, 15], "cerberu": [4, 15, 16], "yaml": [4, 15, 19], "nullabl": [4, 16], "basis_atom": [4, 15], "keysrul": 4, "valuesrul": 4, "use_cosmo": [4, 15], "coord_fil": [4, 15], "copymo": [4, 15], "boolean": [4, 7, 19], "desy_ep": [4, 15], "min": 4, "ecp_atom": 4, "ex_all_st": [4, 15], "default_sett": 4, "local": [4, 22], "setter": 4, "ex_method": [4, 15], "ex_multi": [4, 15], "ex_exopt": [4, 15], "ex_frequ": [4, 15], "ex_frequency_unit": [4, 15], "ex_irrep_st": [4, 15], "rpa": [4, 7, 15], "ci": [4, 15], "dynpol": [4, 15], "polli": [4, 15], "singlet": [4, 7, 15], "doublet": [4, 15], "triplet": [4, 15], "ex_mp2": [4, 15], "gridsiz": [4, 14, 15], "marij": [4, 7, 15], "oneof": 4, "rijk": [4, 15], "ri": [4, 7, 15, 23], "maxcor": [4, 15], "adc": [4, 15], "ccsd": [4, 15], "t": [4, 15], "ccsdt": [4, 15], "maxit": [4, 15], "hf": [4, 15], "mp2energi": [4, 15], "scfconv": [4, 14, 15], "max": [4, 7], "9": [4, 15, 22], "scfiterlimit": [4, 14, 15], "200": 4, "sym_ep": [4, 15], "unpaired_electron": [4, 15], "use_f12": [4, 15], "experiment": [4, 12, 13, 15, 16], "featur": [4, 11, 13, 15, 16, 17, 19, 20, 21, 22], "unit": [6, 13, 15, 16, 17, 18, 21], "mainli": [6, 13, 15, 17, 18, 19, 23], "mock": [6, 16, 19], "sendline_mock": 6, "sendlin": 6, "els": 6, "assert_has_cal": 6, "mo_dirpath": [6, 8], "request": [6, 7, 8, 11], "test_aoforcevibrationaldata": [7, 8], "test_scfiterationdata": [7, 8], "test_str": [7, 8], "test_properti": [7, 8], "cls_dict_path": [7, 8, 18], "generate_fil": [7, 8, 18], "testfunct": [7, 8], "test_convert_float": [7, 8], "test_convert_int": [7, 8], "test_convert_time_str": [7, 8], "testpars": [7, 8], "test_fail_all_done_check": [7, 8], "test_get_split_jobex_pars": [7, 8], "test_get_valu": [7, 8], "test_grep_lin": [7, 8], "parser_and_dict": [7, 8], "test_eiger_runn": [7, 8], "test_error_homo": [7, 8], "test_hol": [7, 8], "test_no_empty_st": [7, 8], "test_parsing_failur": [7, 8], "stdout": [7, 9, 19, 23], "reli": [7, 16, 17, 18, 19, 22, 23], "core_memory_dft": 7, "memory_per_atom": 7, "atoms_per_loop": 7, "construction_tim": 7, "numer": [7, 9, 14, 18, 19, 23], "aoforc": [7, 12, 19, 23], "Will": [7, 9], "numforc": 7, "remain": [7, 14, 22], "memori": [7, 15], "mb": 7, "need": [7, 14, 15, 16, 18, 19, 22, 23], "kb": 7, "loop": 7, "timing_descript": 7, "cpu_tim": 7, "wall_tim": 7, "cpu": 7, "wall": 7, "intens": 7, "m": [7, 13, 19], "dipole_mo": 7, "analysi": [7, 19, 23], "rotat": [7, 23], "constant": 7, "cm": 7, "optic": 7, "u": [7, 13, 18, 19], "3x3": 7, "dipol": [7, 23], "moment": [7, 15, 16, 23], "principl": [7, 17, 19], "axi": 7, "frequenc": [7, 15], "ddip_dq": 7, "intensities_perc": 7, "raman": 7, "eigenvector": [7, 19], "reduced_mass": 7, "vibrat": [7, 23], "mode": [7, 19, 22], "deriv": 7, "km": 7, "mol": 7, "percentag": 7, "num": 7, "reduc": [7, 14], "mass": [7, 23], "zpve": 7, "panda": 7, "datafram": 7, "neg": 7, "satisfi": [7, 22], "condit": [7, 18, 19, 22], "ab": 7, "zero": 7, "relev": [7, 14, 18, 19, 21, 22, 23], "basis_per_speci": 7, "aux_basis_per_speci": 7, "number_scf_basis_func": 7, "number_scf_aux_basis_func": 7, "most": [7, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23], "escf": [7, 12, 18, 23], "speci": 7, "auxiliari": [7, 9], "auxialiari": 7, "info": 7, "screening_charg": 7, "element_radiu": 7, "area": [7, 22], "volum": [7, 22], "nsph": 7, "npspher": 7, "disex2": 7, "phsran": 7, "ampran": 7, "refind": 7, "fepsi": 7, "dielectr": 7, "total_energi": [7, 23], "total_energy_oc_corr": 7, "dielectric_energi": 7, "dielectric_energy_oc_corr": 7, "radiu": 7, "site": 7, "egrad": [7, 12, 23], "spherical_grids": 7, "gridpoint": 7, "exchang": [7, 19, 23], "correl": [7, 19, 23], "spheric": 7, "en_corr": 7, "paser": 7, "unrestricted_electron": 7, "dipole_vector": 7, "dipole_norm": 7, "quadrupole_tensor": 7, "quadrupole_trac": 7, "quadrupole_anisotropi": 7, "electrostat": [7, 23], "quadrupol": [7, 23], "unrestrict": 7, "compon": [7, 19, 22], "tensor": 7, "trace": 7, "anisotropi": 7, "calc_typ": 7, "iter": [7, 15, 23], "residuum_convergence_criterium": 7, "n_occupied_orbit": 7, "orbital_character": 7, "max_davidson_it": 7, "machine_precis": 7, "max_core_mem": 7, "max_cao_basis_vector": 7, "max_treated_vector": 7, "irrep_data": 7, "gs_tot_en": 7, "residuum": 7, "converg": [7, 12, 23], "criterium": 7, "how": [7, 16, 18, 19, 21, 22, 23], "davidson": 7, "machin": [7, 19, 22], "precis": [7, 13, 22], "cao": 7, "simultan": [7, 22], "degeneraci": 7, "dimens": 7, "ground": 7, "detail": [7, 17, 18, 19, 21, 22, 23], "sublist": 7, "convern": 7, "dealt": 7, "inner": 7, "euclidean": 7, "residu": 7, "msg": 7, "func_typ": 7, "xcfun": 7, "relax": [7, 12, 23], "concern": [7, 16, 17, 18, 22], "xc": 7, "gga": 7, "lda": 7, "center_of_mass": 7, "center_of_charg": 7, "integral_neglect_threshold": 7, "thize": [7, 14], "thime": [7, 14], "gradien": 7, "neglect": 7, "storag": [7, 22], "energy_onli": 7, "lattice_param": 7, "shortest_interatomic_dist": 7, "direct_space_vector": 7, "reciprocal_space_vector": 7, "shortest": 7, "interatom": 7, "align": 7, "x": [7, 9, 19, 20, 21], "xy": 7, "reciproc": 7, "pi": 7, "v": 7, "a2": 7, "a3": 7, "b3": 7, "crystallograph": 7, "recov": 7, "energy_chang": 7, "rms_displ": 7, "max_displ": 7, "rms_grad": 7, "max_grad": 7, "final": [7, 14, 17, 18, 22, 23], "what": [7, 18, 19, 22], "statpt": [7, 12, 18, 23], "thr": 7, "conv": 7, "achiev": [7, 19, 22], "rm": 7, "displac": 7, "thr_int_coord": 7, "criterion": [7, 22], "norm_cartesian": 7, "norm_intern": 7, "max_intern": 7, "stapt": [7, 23], "take": [7, 13, 15, 16, 18, 19, 22, 23], "account": 7, "ricor": 7, "rij_memori": 7, "rik": 7, "ridft": [7, 12, 15, 18, 19, 23], "approxim": [7, 22], "rij": 7, "host": [7, 22], "start_tim": 7, "end_tim": 7, "wa": [7, 15, 22, 23], "datetim": 7, "dii": [7, 23], "diis_error_vect": 7, "conv_tot_en": 7, "conv_one_e_en": 7, "virtual_orbital_shift_on": 7, "virtual_orbital_shift_limit": 7, "restart_fil": 7, "oper": [7, 14, 16, 22, 23], "switch": [7, 19], "increment": [7, 20], "virtual": [7, 23], "shift": [7, 23], "character": [7, 22], "restart": 7, "kinetic_energi": 7, "potential_energi": 7, "virial_theorem": [7, 23], "wavefunction_norm": 7, "coulomb_energi": 7, "xc_energi": 7, "ts_energi": 7, "free_energi": 7, "sigma0_energi": 7, "virial": 7, "theorem": 7, "wavefunct": 7, "coulomb": 7, "entrop": 7, "free": [7, 22], "sigma0": 7, "first_index": 7, "damp": 7, "keep": [7, 14, 16, 19, 22], "wast": [7, 18], "higher": [7, 12, 21, 23], "tot_en": 7, "osc_str": 7, "rot_str": 7, "dominant_contribut": 7, "moments_column": 7, "cannot": [7, 14, 15, 19, 22], "oscil": 7, "strength": 7, "rotatori": 7, "domin": 7, "occ_orb": 7, "virt_orb": 7, "coeff": 7, "coeffici": 7, "electr": 7, "magnet": 7, "column": 7, "electric_dipol": 7, "magnetic_dipol": 7, "electric_quadrupol": 7, "initial_elec_temp": 7, "final_elec_temp": 7, "annealing_factor": 7, "annealing_homo_lumo_gap_limit": 7, "smearing_de_limit": 7, "smear": [7, 23], "temperatur": 7, "anneal": 7, "de": 7, "max_trust_radiu": 7, "min_trust_radiu": 7, "init_trust_radiu": 7, "min_grad_norm_for_gdii": 7, "prev_steps_for_gdii": 7, "hessian_update_method": 7, "thr_energy_chang": 7, "thr_max_displ": 7, "thr_max_grad": 7, "thr_rms_displ": 7, "thr_rms_grad": 7, "use_default": 7, "final_step_radiu": 7, "trust": 7, "minimum": [7, 15], "gdii": 7, "hessian": 7, "n_rep": 7, "rep": 7, "part": [7, 12, 14, 18, 19, 22], "might": [7, 12, 13, 14, 15, 16, 18, 19, 21, 22], "build": [7, 18, 23], "numerical_integr": 7, "aforc": 7, "work": [7, 8, 12, 13, 14, 15, 18, 19, 22], "nativ": 7, "ex_stat": 7, "minim": 7, "rel": [7, 9, 14, 16, 18], "prece": 7, "rdgrad": [7, 23], "jobex": [7, 12, 23], "mpgrad": [7, 12, 23], "ricc2": [7, 12, 15, 23], "pnoccsd": [7, 23], "pno": 7, "program": [7, 9, 12, 17, 22], "yet": [7, 19], "dscf": [7, 12, 15, 19, 23], "main": [7, 16, 18, 19, 21], "portion": [7, 16, 18, 19, 22], "aim": [7, 15, 19, 22], "reusabl": 7, "possibl": [7, 14, 15, 16, 17, 18, 19, 22], "across": [7, 19, 22], "quantiti": [7, 21, 23], "access": [7, 15, 16, 18, 19, 20, 21, 22, 23], "lazi": [7, 18, 23], "section": [7, 15, 16, 17, 18, 19, 22, 23], "crash": 7, "lead": [7, 14, 15, 17, 19], "wrong": 7, "heavili": [7, 16], "regex": 7, "isotop": 7, "activ": [7, 15, 22], "subdictionari": 7, "xf": 7, "functional_msg": 7, "functional_nam": 7, "functional_typ": 7, "chosen": [7, 18], "exopt": [7, 15], "check_all_don": 7, "exec_en": 7, "parser_en": 7, "exec_grad": 7, "parser_grad": 7, "exec_relax": 7, "parser_relax": 7, "text": [7, 18, 21, 23], "find": [7, 22], "th": [7, 15], "callabl": 7, "better": [7, 19], "instead": [7, 9, 13, 14, 16, 18, 19, 22, 23], "nline": 7, "similarli": [7, 23], "grep": 7, "plu": [7, 15, 22], "tm_version": [7, 8], "tm_build": 7, "tm_lattice_param": 7, "pre": [7, 12], "print": [7, 9, 19, 23], "alloc": 7, "exponenti": 7, "11": [7, 21, 22], "23": 7, "123e": 7, "01": [7, 19], "123d": 7, "compos": [7, 23], "asterisk": 7, "fortran": 7, "dai": [7, 22], "hour": 7, "12": [7, 22], "minut": 7, "55": 7, "nelec": 7, "eiger": [7, 23], "ascend": [7, 23], "inddic": 7, "1e": [7, 9], "06": 7, "anot": 7, "data_path": 7, "compat": [7, 18, 19, 21], "mutablesequ": [7, 23], "sequenc": [7, 16], "increas": [7, 14, 15, 21], "eigenst": [7, 23], "subset": [7, 16], "filter": 7, "shortcut": [7, 14], "hole": 7, "allow_fract": 7, "only_occupi": 7, "reorder_irrep_index": 7, "lowest": [7, 23], "fill": [7, 13], "ones": [7, 15, 18, 19], "procedur": [7, 16, 22, 23], "becaus": [7, 18, 22], "equal": [7, 9, 17], "self": [7, 11, 16], "ly": 7, "dg_string": 7, "py": [8, 17, 19, 20], "repeat": [8, 18, 19, 23], "verifi": [8, 14, 15, 19], "implicitli": 8, "target": [8, 16, 18, 19], "extens": [8, 15, 22], "files_list": [8, 18], "pytest": [8, 9, 19], "fixtur": [8, 16, 18, 19], "These": [8, 13, 14, 15, 19, 22, 23], "ensur": [8, 16, 22], "parser_method": [8, 9, 18], "infrastructur": [9, 19], "configur": [9, 19, 20], "10": [9, 15, 22], "dryrun_itest": [9, 19], "baseexcept": 9, "itest": [9, 19], "obj": 9, "test_if_subclass": 9, "tri": 9, "By": [9, 15, 19, 22], "deactiv": 9, "desir": [9, 16], "rtol": 9, "07": 9, "ignored_valu": 9, "err_msg": 9, "verbos": 9, "numpi": 9, "assert_equ": 9, "16": [9, 21, 22], "assertionerror": 9, "requir": [9, 12, 13, 14, 15, 16, 17, 18, 19, 22], "scalar": 9, "arrai": 9, "almost": 9, "conflict": 9, "assert_allclos": 9, "absolut": [9, 15, 19, 22], "still": [9, 13, 14, 18, 19], "though": [9, 15, 18, 19, 22, 23], "failur": [9, 15, 16, 19, 22], "current_level": 9, "nest": 9, "test_definit": 9, "log_fpath": 9, "outdir": 9, "logfil": 9, "struc": 9, "file_nam": 9, "_privat": 9, "expos": 9, "public": [9, 22], "isnan": 9, "typeerror": 9, "rubric": 9, "ufunc": 9, "sometim": 9, "notimplementedtyp": 9, "wrapper": 9, "make": [9, 11, 14, 16, 17, 18, 19, 20, 22], "sure": [9, 14, 16, 22], "onc": [9, 18, 19], "solv": [9, 15], "level": [9, 16, 18, 19, 23], "instal": [9, 19, 22], "define_opt": 9, "coord_filenam": 9, "control_reference_filenam": 9, "file_class": 9, "datagroups_opt": 9, "success": [9, 19], "datagroup_nam": 9, "datagroup_valu": 9, "delet": [9, 19], "changedir": 9, "context": [9, 18, 19, 22], "manag": [9, 18, 19, 21], "temporari": [9, 19], "tempfil": 9, "mkdtemp": 9, "cd": 9, "monti": [9, 18, 21, 23], "o": [9, 11, 13, 19], "preserv": [9, 22], "yield": 9, "touch": 9, "turbomoleio": [10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23], "you": [11, 13, 14, 15, 16, 18, 19, 20, 22, 23], "patch": [11, 20], "issu": 11, "github": [11, 12], "http": [11, 22], "com": 11, "matgenix": 11, "pleas": [11, 22], "much": [11, 14, 15, 16, 19, 23], "small": [11, 15, 18, 19], "snippet": 11, "reproduc": [11, 14, 19], "your": [11, 15, 16, 18, 19, 22, 23], "python": [11, 12, 13, 14, 17, 19, 20, 21], "document": [12, 16, 17, 19, 20, 22, 23], "commit": [12, 22], "hook": 12, "lint": 12, "workflow": [12, 15, 21], "adapt": [12, 22], "progress": [12, 13], "api": [12, 13, 14, 17, 20, 23], "prior": [12, 13, 19, 22], "preliminari": 12, "rimp2": 12, "reorgan": 12, "script": [12, 14, 19, 22, 23], "offici": [12, 22], "gpl": [12, 22], "v3": 12, "licens": [12, 21], "simul": 13, "howev": [13, 14, 15, 16, 18, 22, 23], "further": [13, 22, 23], "reason": [13, 14, 15, 19, 22], "advantag": [13, 15, 16, 17, 18], "convers": 13, "limit": [13, 14, 15, 19, 22], "capabl": 13, "isol": [13, 18], "see": [13, 15, 16, 17, 19, 22, 23], "below": [13, 14, 18, 19, 22, 23], "exploit": 13, "simplest": [13, 15], "translat": 13, "look": [13, 14, 19, 23], "00000000000000": 13, "17616323936717": 13, "03717448857876": 13, "35232647873438": 13, "complic": [13, 16], "commonli": 13, "we": [13, 14, 15, 16, 18, 19, 22, 23], "stress": 13, "again": [13, 18, 23], "oppos": 13, "Their": [13, 19], "bring": [13, 16], "few": [13, 14, 16, 17, 23], "let": [13, 18], "never": [13, 14], "nor": [13, 22], "As": [13, 14, 15, 18, 19], "subsequ": 14, "lack": 14, "unambigu": 14, "distinct": 14, "superflu": 14, "particular": [14, 15, 16, 18, 19, 20, 22, 23], "appar": 14, "strictli": [14, 17], "mandatori": 14, "under": [14, 18, 19, 22], "offer": [14, 22, 23], "view": [14, 18, 22], "inspir": 14, "distribut": [14, 16, 19, 22], "simplic": 14, "ambigu": 14, "encount": [14, 15], "ask": [14, 22], "intent": [14, 22], "p": [14, 15], "m3": 14, "interest": [14, 22], "dg": 14, "kind": [14, 15, 18, 19, 22, 23], "uniform": 14, "next": [14, 19, 22], "join": 14, "want": [14, 15, 16, 18, 21, 22], "c1": 14, "100": 14, "abov": [14, 15, 18, 19, 22, 23], "lastli": [14, 18, 19, 23], "whole": [14, 15, 18, 19, 22], "connect": [14, 19, 21, 22], "pbe": 14, "design": [14, 18, 19, 21, 22, 23], "besid": 14, "frequent": 14, "over": [14, 19], "best": [14, 16, 19, 22], "attent": 14, "organ": [14, 18, 19, 22, 23], "analys": 14, "divid": [14, 19], "mention": [14, 15, 19], "explicitli": [14, 15, 22], "crucial": 15, "challeng": 15, "autom": 15, "child": 15, "applic": [15, 19, 22], "respond": 15, "complex": 15, "speed": 15, "navig": 15, "histori": [15, 16], "submit": 15, "sent_command": [15, 16], "repli": [15, 16], "brought": 15, "situat": 15, "foreseen": 15, "realli": [15, 19], "low": 15, "too": [15, 22], "120": 15, "good": [15, 16, 18, 19, 23], "compromis": 15, "previous": [15, 19], "interrupt": 15, "help": [15, 17, 19], "predefin": 15, "prepar": [15, 19], "dp": 15, "dr": 15, "prepapar": 15, "Of": [15, 22], "cours": [15, 19, 22], "tune": [15, 19], "proceed": 15, "retriev": 15, "cover": [15, 19, 22], "everi": [15, 22], "scenario": 15, "focus": [15, 23], "keywork": 15, "overrid": [15, 19], "forc": [15, 22], "sy": 15, "distinguish": [15, 22], "ciss": 15, "rpat": 15, "cist": 15, "outcom": [15, 19], "eht": 15, "uht": 15, "larger": [15, 22], "num_exc_st": 15, "multiplicity_int": 15, "exci": 15, "nexc": 15, "polaris": 15, "589": 15, "nm": 15, "enforc": [15, 17, 22], "treatment": 15, "geoopt": 15, "def2": 15, "sv": 15, "specic": 15, "unpair": 15, "f12": 15, "ccsdapprox": 15, "rir12": 15, "accuraci": 15, "rang": 15, "cosmo_out": 15, "paramat": 15, "At": [15, 23], "prevent": [15, 19, 22], "typo": 15, "altern": [15, 16, 22], "define_parameters_valid": 15, "Being": [15, 16], "bit": 15, "care": [15, 18, 19, 21], "certain": [15, 22], "probabl": [15, 16, 18, 23], "guid": [16, 17, 18, 19, 23], "briefli": 16, "discuss": [16, 18, 19], "aspect": [16, 17], "rememb": [16, 18], "trivial": [16, 19], "prone": 16, "littl": [16, 19], "wish": [16, 19, 22, 23], "explor": 16, "plan": [16, 19], "protect": [16, 22], "_": 16, "right": [16, 22], "turn": 16, "introduc": [16, 18, 19], "carefulli": [16, 18, 19, 21], "There": 16, "mind": [16, 18], "advanc": [16, 21], "_sendlin": 16, "_expect": 16, "track": 16, "receiv": [16, 22], "known": 16, "intercept": 16, "signal": 16, "disrupt": 16, "flow": [16, 22], "run_": 16, "share": [16, 18, 22], "idea": [16, 22, 23], "mimic": 16, "reus": 16, "develop": [16, 17, 18, 19, 22, 23], "natur": [16, 18, 21, 22], "variou": [16, 23], "explan": [16, 17, 18], "hoc": 16, "interconnected": 16, "introduct": [16, 19], "succe": 16, "against": [16, 22], "real": 16, "welcom": [16, 22], "improv": 16, "power": [16, 22], "place": [16, 19, 22, 23], "learn": 16, "dependeci": 16, "With": 17, "nonetheless": 17, "compli": [17, 22], "guidelin": 17, "greater": 17, "8": [17, 21, 22], "understand": [17, 19, 23], "orient": 17, "inherit": 17, "often": [17, 19], "pep": 17, "style": 17, "although": [17, 22, 23], "deviat": 17, "advis": [17, 21, 22], "stick": [17, 19], "essenti": [17, 19, 22], "futur": [17, 22], "googl": 17, "docstr": 17, "docs_rst": 17, "typeset": 17, "restructuredtext": 17, "html": [17, 19, 22], "sphinx": 17, "doc": [17, 20], "rst": 17, "invok": 17, "task": 17, "remark": 17, "strongli": 17, "discourag": [17, 19], "backward": [17, 18, 19, 21], "clear": [17, 22], "clearli": [17, 22], "highlight": 17, "possibli": [17, 19, 23], "agre": [17, 18, 22], "maintain": [17, 22], "explain": [18, 19, 22], "depth": 18, "inspect": [18, 19], "meant": 18, "lazy_properti": 18, "mix": 18, "temporarili": 18, "dispos": 18, "narrow": 18, "down": [18, 21], "abl": 18, "togeth": [18, 23], "On": 18, "hand": 18, "prefer": [18, 22, 23], "approach": [18, 23], "quickli": 18, "he": 18, "rest": [18, 23], "impact": 18, "proce": [18, 19], "bottom": 18, "express": [18, 22, 23], "focu": [18, 23], "analyz": [18, 19], "consider": 18, "appear": 18, "disappear": 18, "latter": 18, "newli": 18, "__init__": [18, 20], "deseri": 18, "old": [18, 19], "anymor": 18, "upon": 18, "manner": [18, 20, 22, 23], "address": [18, 22], "encapsul": 18, "recommend": 18, "hold": 18, "exec_to_out_obj": 18, "decid": [18, 22], "mayb": 18, "extrem": [18, 19], "becom": 18, "bug": [18, 19, 20, 21], "partial": 18, "loos": 18, "warn": 18, "deal": [18, 23], "process": 19, "meet": [19, 22], "behav": 19, "exhaust": 19, "beyond": [19, 22], "scope": [19, 22], "somewhat": 19, "arbitrari": 19, "own": [19, 22], "reintroduc": 19, "later": [19, 22], "wide": [19, 22], "custom": [19, 22], "coverag": [19, 22], "cov": 19, "sum": 19, "easiest": 19, "pip": 19, "mongomock": 19, "runtest": 19, "sh": 19, "project": 19, "report": [19, 21], "coverage_html": 19, "coveragerc_unit": 19, "coveragerc_integr": 19, "subfold": 19, "creation": 19, "toward": 19, "high": 19, "rate": 19, "alon": [19, 23], "99": 19, "tm_v7": 19, "additionn": 19, "necessari": [19, 22], "integrations_test": 19, "exclud": [19, 22], "outright": 19, "obvious": 19, "meaningless": 19, "date": [19, 22], "elaps": 19, "chemic": 19, "slightli": [19, 20], "impract": 19, "meaning": 19, "acoust": 19, "vari": 19, "inde": 19, "cumbersom": 19, "inevit": 19, "underli": 19, "renam": 19, "altogeth": 19, "now": 19, "releas": [19, 20, 21, 22], "light": 19, "looser": 19, "tolear": 19, "wise": 19, "test_dscf": 19, "test_run_dscf_hf": 19, "trigger": 19, "imposs": 19, "wrongli": 19, "systemat": [19, 22, 23], "short": [19, 22], "enough": [19, 23], "comput": [19, 22], "resourc": 19, "gain": 19, "89": 19, "test_": 19, "discov": 19, "experi": 19, "unittest": 19, "testcas": 19, "onlin": 19, "practic": [19, 22], "whenev": 19, "tmpdir": 19, "why": [19, 22], "conftest": 19, "eas": [19, 20], "itself": [19, 22], "benzen": 19, "benzene_myxc": 19, "hereaft": [19, 22], "testgen": 19, "testexec": 19, "testnam": 19, "excerpt": 19, "tree": 19, "aceton_ful": 19, "h2_numforc": 19, "aceton_dftd3_tzvp": 19, "h2o_std": 19, "h2o_uhf": 19, "nh3_cosmo_fermi": 19, "nh3_dftd1": 19, "tests_config": 19, "generate_output_fil": 19, "generate_control": 19, "tm_vx": 19, "y": [19, 20], "z": 19, "v7": 19, "thing": [19, 22], "action": [19, 22], "fulli": 19, "due": 19, "critic": 19, "measur": [19, 22], "dev_script": 19, "parsing_update_differ": 19, "dry": 19, "minor": [19, 20], "occur": [19, 22], "fpath": 19, "aris": [19, 22], "newest": 19, "older": [19, 20], "safe": 19, "transit": 19, "facilit": 19, "know": [19, 22], "adopt": [20, 22], "semant": 20, "major": [20, 22], "__version__": 20, "conf": 20, "latest": 20, "librari": [21, 22], "summar": 21, "mongodb": 21, "databas": 21, "firework": 21, "quick": 21, "overal": 21, "appendix": 21, "runner": 21, "suit": 21, "changelog": 21, "feb": 21, "24": 21, "2022": 21, "15": [21, 22], "sep": 21, "20": [21, 22], "2021": 21, "mar": 21, "page": 21, "softwar": 22, "redistribut": 22, "term": 22, "gnu": 22, "publish": 22, "foundat": 22, "hope": 22, "warranti": 22, "impli": 22, "merchant": 22, "fit": 22, "FOR": 22, "29": 22, "june": 22, "2007": 22, "copyright": 22, "inc": 22, "fsf": 22, "org": 22, "everyon": 22, "permit": 22, "verbatim": 22, "preambl": 22, "copyleft": 22, "awai": 22, "freedom": 22, "contrast": 22, "our": 22, "author": 22, "speak": 22, "price": 22, "piec": [22, 23], "deni": 22, "surrend": 22, "therefor": 22, "grati": 22, "fee": 22, "recipi": 22, "And": 22, "legal": 22, "permiss": 22, "sake": 22, "erron": 22, "devic": 22, "manufactur": 22, "fundament": 22, "abus": 22, "product": 22, "individu": 22, "unaccept": 22, "prohibit": 22, "substanti": 22, "domain": 22, "stand": 22, "readi": 22, "provis": 22, "threaten": 22, "constantli": 22, "patent": 22, "restrict": 22, "special": 22, "danger": 22, "proprietari": 22, "assur": 22, "render": 22, "AND": 22, "law": 22, "semiconductor": 22, "mask": 22, "license": 22, "earlier": 22, "unmodifi": 22, "propag": 22, "secondarili": 22, "liabl": 22, "infring": 22, "privat": 22, "countri": 22, "convei": 22, "parti": 22, "mere": 22, "network": 22, "transfer": 22, "extent": 22, "conveni": 22, "promin": 22, "visibl": 22, "tell": 22, "item": 22, "recogn": 22, "bodi": 22, "languag": 22, "serv": 22, "kernel": 22, "window": 22, "compil": 22, "interpret": 22, "link": [22, 23], "subprogram": 22, "intim": 22, "grant": 22, "irrevoc": 22, "met": 22, "affirm": 22, "unlimit": 22, "constitut": 22, "acknowledg": 22, "fair": 22, "long": 22, "sole": 22, "exclus": 22, "facil": 22, "materi": 22, "behalf": 22, "outsid": 22, "relationship": 22, "circumst": 22, "sublicens": 22, "anti": 22, "circumvent": 22, "No": 22, "shall": 22, "deem": 22, "technolog": 22, "fulfil": 22, "oblig": 22, "articl": 22, "wipo": 22, "treati": 22, "decemb": 22, "1996": 22, "waiv": 22, "forbid": 22, "exercis": 22, "disclaim": 22, "medium": 22, "conspicu": 22, "intact": 22, "absenc": 22, "along": [22, 23], "carri": 22, "anyon": 22, "who": [22, 23], "possess": 22, "regardless": 22, "invalid": 22, "independ": 22, "aggreg": 22, "inclus": 22, "embodi": 22, "accompani": 22, "durabl": 22, "customarili": 22, "interchang": 22, "year": 22, "spare": 22, "cost": 22, "server": 22, "occasion": 22, "noncommerci": 22, "subsect": [22, 23], "6b": 22, "sai": 22, "peer": 22, "transmiss": 22, "6d": 22, "consum": 22, "tangibl": 22, "person": 22, "famili": 22, "household": 22, "sold": 22, "incorpor": 22, "dwell": 22, "doubt": 22, "resolv": 22, "favor": 22, "commerci": 22, "industri": 22, "unless": 22, "signific": 22, "suffic": 22, "continu": 22, "interf": 22, "transact": 22, "perpetu": 22, "But": 22, "neither": 22, "retain": 22, "abil": 22, "rom": 22, "servic": 22, "advers": 22, "affect": 22, "violat": 22, "rule": 22, "protocol": 22, "publicli": 22, "password": 22, "unpack": 22, "supplement": 22, "govern": 22, "regard": 22, "notwithstand": 22, "holder": 22, "liabil": 22, "misrepresent": 22, "licensor": 22, "declin": 22, "trademark": 22, "trade": 22, "indemnif": 22, "contractu": 22, "assumpt": 22, "impos": 22, "relicens": 22, "surviv": 22, "statement": 22, "expressli": 22, "void": 22, "paragraph": 22, "ceas": 22, "reinstat": 22, "provision": 22, "until": 22, "perman": 22, "notifi": 22, "cessat": 22, "moreov": 22, "cure": 22, "30": 22, "receipt": 22, "qualifi": 22, "Not": 22, "ancillari": 22, "consequ": 22, "likewis": 22, "noth": 22, "downstream": 22, "subject": 22, "complianc": 22, "entiti": 22, "asset": 22, "subdivid": 22, "merg": 22, "whatev": 22, "predecessor": 22, "had": 22, "effort": 22, "royalti": 22, "litig": 22, "cross": 22, "claim": 22, "counterclaim": 22, "lawsuit": 22, "alleg": 22, "sell": 22, "sale": 22, "contributor": 22, "acquir": 22, "worldwid": 22, "agreement": 22, "denomin": 22, "coven": 22, "sue": 22, "knowingli": 22, "readili": 22, "arrang": 22, "depriv": 22, "yourself": 22, "benefit": 22, "knowledg": 22, "believ": 22, "pursuant": 22, "procur": 22, "convey": 22, "discriminatori": 22, "busi": 22, "payment": 22, "primarili": 22, "28": 22, "march": 22, "constru": 22, "defens": 22, "court": 22, "contradict": 22, "excus": 22, "pertin": 22, "whom": 22, "refrain": 22, "13": 22, "affero": 22, "14": 22, "revis": 22, "Such": 22, "spirit": 22, "choos": 22, "ever": 22, "proxi": 22, "THERE": 22, "NO": 22, "THE": 22, "TO": 22, "BY": 22, "IN": 22, "OR": 22, "AS": 22, "OF": 22, "BUT": 22, "NOT": 22, "risk": 22, "qualiti": 22, "WITH": 22, "prove": 22, "defect": 22, "repair": 22, "event": 22, "WILL": 22, "BE": 22, "damag": 22, "incident": 22, "consequenti": 22, "inabl": 22, "loss": 22, "BEING": 22, "inaccur": 22, "sustain": 22, "IF": 22, "SUCH": 22, "17": 22, "review": 22, "waiver": 22, "civil": 22, "greatest": 22, "attach": 22, "safest": 22, "pointer": 22, "brief": 22, "www": 22, "contact": 22, "paper": 22, "mail": 22, "hypothet": 22, "gui": 22, "box": 22, "employ": 22, "programm": 22, "school": 22, "subroutin": 22, "lesser": 22, "lgpl": 22, "name_of_the_execut": 23, "dig": 23, "decomposit": 23, "energy_data": 23, "0x7fb15f425eb8": 23, "49586861429": 23, "42945116692": 23, "gather": 23, "scf_output": 23, "0x7fd37d6282b0": 23, "tailor": 23, "sens": 23, "punctual": 23, "mostli": 23, "top": 23, "resolut": 23, "ident": 23, "criteria": 23, "cc2": 23, "uhfmo_alpha": 23, "uhfmo_beta": 23}, "objects": {"": [[1, 0, 0, "-", "turbomoleio"]], "turbomoleio": [[2, 0, 0, "-", "core"], [4, 0, 0, "-", "input"], [7, 0, 0, "-", "output"], [9, 0, 0, "-", "testfiles"]], "turbomoleio.core": [[2, 0, 0, "-", "base"], [2, 0, 0, "-", "control"], [2, 0, 0, "-", "datagroups"], [2, 0, 0, "-", "molecule"], [2, 0, 0, "-", "periodic"], [2, 0, 0, "-", "symmetry"], [3, 0, 0, "-", "tests"], [2, 0, 0, "-", "utils"]], "turbomoleio.core.base": [[2, 1, 1, "", "BaseSystem"], [2, 3, 1, "", "get_coord_lines"], [2, 3, 1, "", "get_mol_and_indices_frozen"]], "turbomoleio.core.base.BaseSystem": [[2, 2, 1, "", "coord_lines"], [2, 2, 1, "", "to_coord_file"], [2, 2, 1, "", "to_coord_string"], [2, 2, 1, "", "to_file"]], "turbomoleio.core.control": [[2, 1, 1, "", "Control"], [2, 1, 1, "", "Defaults"], [2, 1, 1, "", "Energy"], [2, 1, 1, "", "Gradient"], [2, 1, 1, "", "Shells"], [2, 3, 1, "", "adg"], [2, 3, 1, "", "cdg"], [2, 3, 1, "", "cpc"], [2, 3, 1, "", "kdg"], [2, 3, 1, "", "mdgo"], [2, 3, 1, "", "sdg"], [2, 3, 1, "", "sdgo"]], "turbomoleio.core.control.Control": [[2, 2, 1, "", "add_cosmo"], [2, 2, 1, "", "cpc"], [2, 4, 1, "", "energy"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_metric"], [2, 2, 1, "", "get_charge"], [2, 2, 1, "", "get_shells"], [2, 2, 1, "", "get_subfiles_list"], [2, 4, 1, "", "gradient"], [2, 4, 1, "", "is_uhf"], [2, 2, 1, "", "remove_last_energy"], [2, 2, 1, "", "remove_last_gradient"], [2, 2, 1, "", "set_disp"], [2, 2, 1, "", "to_file"]], "turbomoleio.core.control.Defaults": [[2, 5, 1, "", "METRIC"]], "turbomoleio.core.control.Energy": [[2, 4, 1, "", "delta_e"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 4, 1, "", "n_steps"], [2, 2, 1, "", "plot"]], "turbomoleio.core.control.Gradient": [[2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 4, 1, "", "last_grad_max"], [2, 4, 1, "", "last_grad_norm"], [2, 4, 1, "", "max_gradients"], [2, 4, 1, "", "n_steps"], [2, 4, 1, "", "norms"], [2, 2, 1, "", "plot"]], "turbomoleio.core.control.Shells": [[2, 2, 1, "", "as_dict"], [2, 2, 1, "", "from_dict"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 4, 1, "", "irreps"], [2, 2, 1, "", "to_datagroup"], [2, 4, 1, "", "total_electrons"]], "turbomoleio.core.datagroups": [[2, 1, 1, "", "DataGroups"], [2, 3, 1, "", "cleanup_string"], [2, 3, 1, "", "compare_datagroup_string"], [2, 3, 1, "", "remove_comments"], [2, 3, 1, "", "remove_dg_from_list"], [2, 3, 1, "", "split_string_to_dg_list"]], "turbomoleio.core.datagroups.DataGroups": [[2, 2, 1, "", "add_data_group"], [2, 2, 1, "", "adg"], [2, 2, 1, "", "as_dict"], [2, 2, 1, "", "cdg"], [2, 2, 1, "", "change_data_group"], [2, 2, 1, "", "compare"], [2, 2, 1, "", "empty"], [2, 2, 1, "", "from_dict"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "kdg"], [2, 2, 1, "", "kill_data_group"], [2, 2, 1, "", "mdgo"], [2, 2, 1, "", "modify_data_group_options"], [2, 4, 1, "", "ndg"], [2, 4, 1, "", "number_of_data_groups"], [2, 2, 1, "", "sdg"], [2, 2, 1, "", "sdgo"], [2, 2, 1, "", "show_data_group"], [2, 2, 1, "", "show_data_group_option"], [2, 2, 1, "", "show_subfile_fname"], [2, 2, 1, "", "to_file"]], "turbomoleio.core.molecule": [[2, 1, 1, "", "BondAngle"], [2, 1, 1, "", "CollinearBendingAngle"], [2, 1, 1, "", "DihedralAngle"], [2, 1, 1, "", "Distance"], [2, 1, 1, "", "InternalDefinition"], [2, 1, 1, "", "InverseDistance"], [2, 1, 1, "", "MoleculeSystem"], [2, 1, 1, "", "OutOfPlaneAngle"], [2, 1, 1, "", "PerpendicularBendingAngle"]], "turbomoleio.core.molecule.BondAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.CollinearBendingAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.DihedralAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.Distance": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.InternalDefinition": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 2, 1, "", "from_string"], [2, 2, 1, "", "get_subclass_from_str"], [2, 2, 1, "", "is_valid"], [2, 5, 1, "", "n_atoms"], [2, 2, 1, "", "to_string"]], "turbomoleio.core.molecule.InverseDistance": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.MoleculeSystem": [[2, 2, 1, "", "add_bond_angle"], [2, 2, 1, "", "add_dihedral"], [2, 2, 1, "", "add_distance"], [2, 2, 1, "", "as_dict"], [2, 2, 1, "", "from_dict"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 2, 1, "", "get_int_def_inconsistencies"], [2, 2, 1, "", "has_inconsistencies"], [2, 4, 1, "", "molecule"], [2, 2, 1, "", "to_coord_string"]], "turbomoleio.core.molecule.OutOfPlaneAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.molecule.PerpendicularBendingAngle": [[2, 2, 1, "", "compute_value"], [2, 5, 1, "", "coord_str"], [2, 5, 1, "", "coord_type"], [2, 5, 1, "", "n_atoms"]], "turbomoleio.core.periodic": [[2, 1, 1, "", "PeriodicSystem"]], "turbomoleio.core.periodic.PeriodicSystem": [[2, 2, 1, "", "as_dict"], [2, 2, 1, "", "from_dict"], [2, 2, 1, "", "from_file"], [2, 2, 1, "", "from_string"], [2, 4, 1, "", "structure"], [2, 2, 1, "", "to_coord_string"]], "turbomoleio.core.tests": [[3, 0, 0, "-", "test_control"], [3, 0, 0, "-", "test_datagroups"], [3, 0, 0, "-", "test_molecule"], [3, 0, 0, "-", "test_periodic"], [3, 0, 0, "-", "test_utils"]], "turbomoleio.core.tests.test_control": [[3, 1, 1, "", "TestControl"], [3, 1, 1, "", "TestDatagroupFunctions"], [3, 1, 1, "", "TestEnergy"], [3, 1, 1, "", "TestGradient"], [3, 1, 1, "", "TestShells"], [3, 3, 1, "", "check_equivalent_dg"]], "turbomoleio.core.tests.test_control.TestControl": [[3, 2, 1, "", "test_add_cosmo"], [3, 2, 1, "", "test_cpc"], [3, 2, 1, "", "test_disp"], [3, 2, 1, "", "test_energy"], [3, 2, 1, "", "test_from_file"], [3, 2, 1, "", "test_from_metric"], [3, 2, 1, "", "test_get_charge"], [3, 2, 1, "", "test_get_shells"], [3, 2, 1, "", "test_get_subfiles_list"], [3, 2, 1, "", "test_gradient"], [3, 2, 1, "", "test_is_uhf"], [3, 2, 1, "", "test_remove_energy"], [3, 2, 1, "", "test_remove_energy_in_control"], [3, 2, 1, "", "test_remove_gradient"], [3, 2, 1, "", "test_remove_gradient_in_control"]], "turbomoleio.core.tests.test_control.TestDatagroupFunctions": [[3, 5, 1, "", "pytestmark"], [3, 2, 1, "", "test_adg"], [3, 2, 1, "", "test_cdg"], [3, 2, 1, "", "test_cpc"], [3, 2, 1, "", "test_kdg"], [3, 2, 1, "", "test_mdgo"], [3, 2, 1, "", "test_sdg"], [3, 2, 1, "", "test_sdgo"]], "turbomoleio.core.tests.test_control.TestEnergy": [[3, 2, 1, "", "test_energy_mp2"], [3, 2, 1, "", "test_energy_scf"]], "turbomoleio.core.tests.test_control.TestGradient": [[3, 2, 1, "", "test_empty_gradient"], [3, 2, 1, "", "test_fail_parsing"], [3, 2, 1, "", "test_gradient"], [3, 2, 1, "", "test_periodic"]], "turbomoleio.core.tests.test_control.TestShells": [[3, 2, 1, "", "test_closed"], [3, 2, 1, "", "test_fail_parse"], [3, 2, 1, "", "test_fractional"], [3, 2, 1, "", "test_uhf"]], "turbomoleio.core.tests.test_datagroups": [[3, 3, 1, "", "test_cleanup"], [3, 3, 1, "", "test_compare"], [3, 3, 1, "", "test_compare_datagroup_string"], [3, 3, 1, "", "test_datagroups"], [3, 3, 1, "", "test_empty"], [3, 3, 1, "", "test_modify_data_group_options"], [3, 3, 1, "", "test_remove_comments"], [3, 3, 1, "", "test_remove_dg_from_list"], [3, 3, 1, "", "test_sdg_subfiles"], [3, 3, 1, "", "test_show_data_group_option"], [3, 3, 1, "", "test_show_subfile_fname"], [3, 3, 1, "", "test_split_string_to_dg_list"]], "turbomoleio.core.tests.test_molecule": [[3, 1, 1, "", "TestInternalDefinition"], [3, 1, 1, "", "TestMoleculeSystem"], [3, 3, 1, "", "check_dg"], [3, 3, 1, "", "check_user_defined_bonds_dg"]], "turbomoleio.core.tests.test_molecule.TestInternalDefinition": [[3, 5, 1, "", "pytestmark"], [3, 2, 1, "", "test_bond_angle"], [3, 2, 1, "", "test_collinear_bending_angle"], [3, 2, 1, "", "test_dihedral_angle"], [3, 2, 1, "", "test_distance"], [3, 2, 1, "", "test_from_string"], [3, 2, 1, "", "test_inverse_distance"], [3, 2, 1, "", "test_out_of_plane_angle"], [3, 2, 1, "", "test_perpendicular_bending_angle"]], "turbomoleio.core.tests.test_molecule.TestMoleculeSystem": [[3, 2, 1, "", "test_add_bond_angle"], [3, 2, 1, "", "test_add_dihedral"], [3, 2, 1, "", "test_add_distance"], [3, 2, 1, "", "test_check_index"], [3, 2, 1, "", "test_disordered"], [3, 2, 1, "", "test_dummy_atoms"], [3, 2, 1, "", "test_from_string"], [3, 2, 1, "", "test_to_coord_string"], [3, 2, 1, "", "test_to_file"]], "turbomoleio.core.tests.test_periodic": [[3, 1, 1, "", "TestPeriodicSystem"]], "turbomoleio.core.tests.test_periodic.TestPeriodicSystem": [[3, 2, 1, "", "test_periodic_2d"], [3, 2, 1, "", "test_periodic_3d"], [3, 2, 1, "", "test_periodic_wrong_rotation"], [3, 2, 1, "", "test_read_periodic_2d"]], "turbomoleio.core.tests.test_utils": [[3, 1, 1, "", "TestGetVersion"]], "turbomoleio.core.tests.test_utils.TestGetVersion": [[3, 2, 1, "", "test_V72"], [3, 2, 1, "", "test_V731"], [3, 2, 1, "", "test_V741"], [3, 2, 1, "", "test_V751"]], "turbomoleio.core.utils": [[2, 3, 1, "", "define_quit"], [2, 3, 1, "", "get_tm_version"]], "turbomoleio.input": [[4, 0, 0, "-", "define"], [5, 0, 0, "-", "templates"], [6, 0, 0, "-", "tests"], [4, 0, 0, "-", "utils"]], "turbomoleio.input.define": [[4, 6, 1, "", "DefineError"], [4, 6, 1, "", "DefineExpectError"], [4, 6, 1, "", "DefineIredError"], [4, 6, 1, "", "DefineParameterError"], [4, 1, 1, "", "DefineRunner"], [4, 6, 1, "", "UnsupportedDefineStateError"]], "turbomoleio.input.define.DefineRunner": [[4, 2, 1, "", "dump_command_file"], [4, 2, 1, "", "run_full"], [4, 2, 1, "", "run_generate_mo_files"], [4, 2, 1, "", "run_update_internal_coords"]], "turbomoleio.input.tests": [[6, 0, 0, "-", "test_define"], [6, 0, 0, "-", "test_utils"]], "turbomoleio.input.tests.test_define": [[6, 1, 1, "", "TestDefineRunner"], [6, 1, 1, "", "TestExceptions"], [6, 3, 1, "", "dr_data"]], "turbomoleio.input.tests.test_define.TestDefineRunner": [[6, 2, 1, "", "assert_sendline_calls"], [6, 2, 1, "", "assert_sendline_has_calls"], [6, 2, 1, "", "test_add_atomic_coordinates_from_file"], [6, 2, 1, "", "test_add_atomic_coordinates_from_file_cartesian"], [6, 2, 1, "", "test_add_cosmo"], [6, 2, 1, "", "test_close"], [6, 2, 1, "", "test_copy_mo_files_ab_mos"], [6, 2, 1, "", "test_copy_mo_files_alpha_beta"], [6, 2, 1, "", "test_copy_mo_files_error"], [6, 2, 1, "", "test_copy_mo_files_mo"], [6, 2, 1, "", "test_define_basis_sets"], [6, 2, 1, "", "test_define_core_potentials"], [6, 2, 1, "", "test_define_symmetry"], [6, 2, 1, "", "test_define_symmetry_error"], [6, 2, 1, "", "test_determine_symmetry"], [6, 2, 1, "", "test_determine_symmetry_eps"], [6, 2, 1, "", "test_dump_command_file"], [6, 2, 1, "", "test_excited_state_menu_error_not_activated"], [6, 2, 1, "", "test_excited_state_menu_frequency"], [6, 2, 1, "", "test_excited_state_menu_irrep"], [6, 2, 1, "", "test_excited_state_menu_irrep_wrong_sym"], [6, 2, 1, "", "test_excited_state_menu_polly"], [6, 2, 1, "", "test_excited_state_menu_rpas"], [6, 2, 1, "", "test_excited_state_menu_urpa"], [6, 2, 1, "", "test_excited_state_menu_urpa_error"], [6, 2, 1, "", "test_excited_state_menu_wrong_ex_method"], [6, 2, 1, "", "test_excited_state_menu_wrong_menu"], [6, 2, 1, "", "test_existing_coordinates"], [6, 2, 1, "", "test_existing_coordinates_cartesian"], [6, 2, 1, "", "test_existing_coordinates_error"], [6, 2, 1, "", "test_existing_coordinates_no_update"], [6, 2, 1, "", "test_existing_coordinates_unsupported"], [6, 2, 1, "", "test_expect"], [6, 2, 1, "", "test_expect_raise_eof"], [6, 2, 1, "", "test_expect_raise_timeout"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_charge"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_default"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_error"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_nocharge"], [6, 2, 1, "", "test_extended_hueckel_theory_menu_unpaired"], [6, 2, 1, "", "test_general_menu_ccsdt"], [6, 2, 1, "", "test_general_menu_dft"], [6, 2, 1, "", "test_general_menu_hf"], [6, 2, 1, "", "test_general_menu_wrong_method"], [6, 2, 1, "", "test_generate_internal_coordinates"], [6, 2, 1, "", "test_generate_internal_coordinates_error"], [6, 2, 1, "", "test_geometry_menu_copymo"], [6, 2, 1, "", "test_geometry_menu_incompatibility_1"], [6, 2, 1, "", "test_geometry_menu_incompatibility_2"], [6, 2, 1, "", "test_geometry_menu_new_coords_1"], [6, 2, 1, "", "test_geometry_menu_new_coords_2"], [6, 2, 1, "", "test_geometry_menu_new_coords_3"], [6, 2, 1, "", "test_geometry_menu_new_coords_4"], [6, 2, 1, "", "test_geometry_menu_no_new_coords"], [6, 2, 1, "", "test_get_bin_path"], [6, 2, 1, "", "test_go_to_general_menu"], [6, 2, 1, "", "test_init"], [6, 2, 1, "", "test_initialize_control_1"], [6, 2, 1, "", "test_initialize_control_2"], [6, 2, 1, "", "test_initialize_control_incompatibility"], [6, 2, 1, "", "test_is_alive"], [6, 2, 1, "", "test_postprocess"], [6, 2, 1, "", "test_quit_general_menu"], [6, 2, 1, "", "test_run_full_1"], [6, 2, 1, "", "test_run_full_2"], [6, 2, 1, "", "test_run_generate_mo_files"], [6, 2, 1, "", "test_run_generate_mo_files_sym"], [6, 2, 1, "", "test_run_update_internal_coords"], [6, 2, 1, "", "test_run_update_internal_coords_error"], [6, 2, 1, "", "test_sendline"], [6, 2, 1, "", "test_set_basis"], [6, 2, 1, "", "test_set_basis_error"], [6, 2, 1, "", "test_set_basis_error_2"], [6, 2, 1, "", "test_set_basis_error_3"], [6, 2, 1, "", "test_set_dft_options_no_dft"], [6, 2, 1, "", "test_set_dft_options_use_dft"], [6, 2, 1, "", "test_set_dft_options_wrong_xc"], [6, 2, 1, "", "test_set_ecp_error"], [6, 2, 1, "", "test_set_ecp_error_2"], [6, 2, 1, "", "test_set_ecp_error_3"], [6, 2, 1, "", "test_set_metric"], [6, 2, 1, "", "test_set_mo_from_control_file"], [6, 2, 1, "", "test_set_mo_from_control_file_2"], [6, 2, 1, "", "test_set_mo_from_control_file_error"], [6, 2, 1, "", "test_set_mo_from_control_file_longpath"], [6, 2, 1, "", "test_set_mp2_options"], [6, 2, 1, "", "test_set_mp2_options_f12"], [6, 2, 1, "", "test_set_mp2_options_geoopt"], [6, 2, 1, "", "test_set_mp2_options_mp2"], [6, 2, 1, "", "test_set_mp2_options_mp2_error"], [6, 2, 1, "", "test_set_ri_state"], [6, 2, 1, "", "test_set_ri_state_marij"], [6, 2, 1, "", "test_set_scf_options"], [6, 2, 1, "", "test_skip_atomic_attribute_menu"], [6, 2, 1, "", "test_skip_atomic_attribute_menu_error"], [6, 2, 1, "", "test_skip_atomic_attribute_menu_internal"], [6, 2, 1, "", "test_switch_to_atomic_attribute_menu"], [6, 2, 1, "", "test_switch_to_atomic_attribute_menu_internal"], [6, 2, 1, "", "test_switch_to_atomic_attribute_menu_internal_error"], [6, 2, 1, "", "test_switch_to_molecular_orbital_definition_menu"], [6, 2, 1, "", "test_switch_to_scf_menu"]], "turbomoleio.input.tests.test_define.TestExceptions": [[6, 2, 1, "", "test_create"]], "turbomoleio.input.tests.test_utils": [[6, 3, 1, "", "test_get_define_template"], [6, 3, 1, "", "test_validate_parameters"]], "turbomoleio.input.utils": [[4, 6, 1, "", "ParametersValidationError"], [4, 3, 1, "", "ex_setter"], [4, 3, 1, "", "get_define_template"], [4, 7, 1, "", "schema_define_params"], [4, 3, 1, "", "validate_parameters"]], "turbomoleio.output": [[7, 0, 0, "-", "data"], [7, 0, 0, "-", "files"], [7, 0, 0, "-", "parser"], [7, 0, 0, "-", "states"], [8, 0, 0, "-", "tests"]], "turbomoleio.output.data": [[7, 1, 1, "", "AoforceNumericalIntegrationData"], [7, 1, 1, "", "AoforceRotationalData"], [7, 1, 1, "", "AoforceVibrationalData"], [7, 1, 1, "", "BaseData"], [7, 1, 1, "", "BasisData"], [7, 1, 1, "", "CosmoData"], [7, 1, 1, "", "DFTData"], [7, 1, 1, "", "DispersionCorrectionData"], [7, 1, 1, "", "ElectrostaticMomentsData"], [7, 1, 1, "", "EscfData"], [7, 1, 1, "", "EscfIterationData"], [7, 1, 1, "", "FunctionalData"], [7, 1, 1, "", "GeometryData"], [7, 1, 1, "", "IntegralData"], [7, 1, 1, "", "MP2Data"], [7, 1, 1, "", "MP2Results"], [7, 1, 1, "", "PeriodicityData"], [7, 1, 1, "", "RelaxConvergenceData"], [7, 1, 1, "", "RelaxData"], [7, 1, 1, "", "RelaxGradientsData"], [7, 1, 1, "", "RiData"], [7, 1, 1, "", "RunData"], [7, 1, 1, "", "ScfData"], [7, 1, 1, "", "ScfEnergiesData"], [7, 1, 1, "", "ScfIterationData"], [7, 1, 1, "", "SingleExcitation"], [7, 1, 1, "", "SmearingData"], [7, 1, 1, "", "SpinData"], [7, 1, 1, "", "StatptData"], [7, 1, 1, "", "SymmetryData"], [7, 1, 1, "", "TurbomoleData"]], "turbomoleio.output.data.AoforceNumericalIntegrationData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.AoforceRotationalData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.AoforceVibrationalData": [[7, 2, 1, "", "from_parser"], [7, 2, 1, "", "get_freqs_df"], [7, 2, 1, "", "n_negative_freqs"], [7, 2, 1, "", "n_positive_freqs"], [7, 2, 1, "", "n_zero_freqs"]], "turbomoleio.output.data.BaseData": [[7, 2, 1, "", "from_file"], [7, 2, 1, "", "from_parser"], [7, 2, 1, "", "from_string"]], "turbomoleio.output.data.BasisData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.CosmoData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.DFTData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.DispersionCorrectionData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.ElectrostaticMomentsData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.EscfData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.EscfIterationData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.FunctionalData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.GeometryData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.IntegralData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.MP2Data": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.MP2Results": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.PeriodicityData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RelaxConvergenceData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RelaxData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RelaxGradientsData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RiData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.RunData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.ScfData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.ScfEnergiesData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.ScfIterationData": [[7, 2, 1, "", "from_parser"], [7, 2, 1, "", "plot_energies"]], "turbomoleio.output.data.SmearingData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.SpinData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.StatptData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.SymmetryData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.data.TurbomoleData": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files": [[7, 1, 1, "", "AoforceOutput"], [7, 1, 1, "", "EgradOutput"], [7, 1, 1, "", "EscfOnlyOutput"], [7, 1, 1, "", "EscfOutput"], [7, 1, 1, "", "GradOutput"], [7, 1, 1, "", "JobexOutput"], [7, 1, 1, "", "MP2Output"], [7, 1, 1, "", "RelaxOutput"], [7, 1, 1, "", "Ricc2Output"], [7, 1, 1, "", "ScfOutput"], [7, 1, 1, "", "StatptOutput"]], "turbomoleio.output.files.AoforceOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.EgradOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.EscfOnlyOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.EscfOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.GradOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.JobexOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.MP2Output": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.RelaxOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.Ricc2Output": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.ScfOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.files.StatptOutput": [[7, 2, 1, "", "from_parser"]], "turbomoleio.output.parser": [[7, 1, 1, "", "Parser"], [7, 3, 1, "", "convert_float"], [7, 3, 1, "", "convert_int"], [7, 3, 1, "", "convert_time_string"]], "turbomoleio.output.parser.Parser": [[7, 2, 1, "", "all_done"], [7, 2, 1, "", "aoforce_analysis"], [7, 2, 1, "", "aoforce_numerical_integration"], [7, 2, 1, "", "basis"], [7, 2, 1, "", "centers"], [7, 2, 1, "", "coordinates"], [7, 2, 1, "", "cosmo_header"], [7, 2, 1, "", "cosmo_results"], [7, 2, 1, "", "density_functional_data"], [7, 2, 1, "", "dftd"], [7, 2, 1, "", "egrad_excited_state"], [7, 2, 1, "", "electrostatic_moments"], [7, 2, 1, "", "escf_excitations"], [7, 2, 1, "", "escf_gs_total_en"], [7, 2, 1, "", "escf_iterations"], [7, 2, 1, "", "fermi"], [7, 2, 1, "", "from_file"], [7, 2, 1, "", "get_split_jobex_parsers"], [7, 2, 1, "", "get_value"], [7, 2, 1, "", "gradient"], [7, 2, 1, "", "grep_line"], [7, 2, 1, "", "header"], [7, 2, 1, "", "integral"], [7, 2, 1, "", "is_uhf"], [7, 2, 1, "", "mp2_data"], [7, 2, 1, "", "mp2_results"], [7, 2, 1, "", "periodicity_data"], [7, 2, 1, "", "pre_escf_run"], [7, 2, 1, "", "pre_scf_run"], [7, 2, 1, "", "rdgrad_memory"], [7, 2, 1, "", "relax_conv_info"], [7, 2, 1, "", "relax_gradient_values"], [7, 2, 1, "", "relax_info"], [7, 2, 1, "", "rij_info"], [7, 2, 1, "", "riper_scf_energies"], [7, 2, 1, "", "s2"], [7, 2, 1, "", "scf_energies"], [7, 2, 1, "", "scf_iterations"], [7, 2, 1, "", "statpt_info"], [7, 4, 1, "", "string"], [7, 2, 1, "", "symmetry"], [7, 2, 1, "", "timings"]], "turbomoleio.output.states": [[7, 1, 1, "", "EigerOutput"], [7, 1, 1, "", "EigerRunner"], [7, 1, 1, "", "State"], [7, 1, 1, "", "States"], [7, 3, 1, "", "get_mos_energies"]], "turbomoleio.output.states.EigerOutput": [[7, 2, 1, "", "compare_states"], [7, 2, 1, "", "from_file"], [7, 2, 1, "", "from_string"]], "turbomoleio.output.states.EigerRunner": [[7, 2, 1, "", "get_eiger_output"], [7, 2, 1, "", "run"], [7, 2, 1, "", "to_file"]], "turbomoleio.output.states.State": [[7, 2, 1, "", "as_dict"], [7, 2, 1, "", "from_dict"], [7, 4, 1, "", "has_fractional_occ"], [7, 4, 1, "", "max_occupation"]], "turbomoleio.output.states.States": [[7, 2, 1, "", "as_dict"], [7, 4, 1, "", "eigenvalues"], [7, 2, 1, "", "filter_states"], [7, 2, 1, "", "from_file"], [7, 4, 1, "", "gap"], [7, 2, 1, "", "generate_lowest_filled_states"], [7, 2, 1, "", "get_shells"], [7, 4, 1, "", "has_fractional_occ"], [7, 4, 1, "", "has_hole"], [7, 4, 1, "", "homo"], [7, 4, 1, "", "homo_index"], [7, 2, 1, "", "insert"], [7, 4, 1, "", "irrep_indices"], [7, 4, 1, "", "irreps"], [7, 4, 1, "", "is_uhf"], [7, 4, 1, "", "lumo"], [7, 4, 1, "", "lumo_index"], [7, 4, 1, "", "n_states"], [7, 4, 1, "", "occupations"], [7, 4, 1, "", "spins"], [7, 4, 1, "", "total_electrons"]], "turbomoleio.output.tests": [[8, 0, 0, "-", "test_data"], [8, 0, 0, "-", "test_files"], [8, 0, 0, "-", "test_parser"], [8, 0, 0, "-", "test_states"]], "turbomoleio.output.tests.test_data": [[8, 3, 1, "", "test_AoforceVibrationalData"], [8, 3, 1, "", "test_ScfIterationData"], [8, 3, 1, "", "test_str"]], "turbomoleio.output.tests.test_files": [[8, 1, 1, "", "TestFiles"], [8, 3, 1, "", "cls_dict_path"], [8, 3, 1, "", "generate_files"]], "turbomoleio.output.tests.test_files.TestFiles": [[8, 2, 1, "", "test_properties"]], "turbomoleio.output.tests.test_parser": [[8, 1, 1, "", "TestFunctions"], [8, 1, 1, "", "TestParser"], [8, 3, 1, "", "generate_files"], [8, 3, 1, "", "method"], [8, 3, 1, "", "parser_and_dict"]], "turbomoleio.output.tests.test_parser.TestFunctions": [[8, 2, 1, "", "test_convert_float"], [8, 2, 1, "", "test_convert_int"], [8, 2, 1, "", "test_convert_time_string"]], "turbomoleio.output.tests.test_parser.TestParser": [[8, 2, 1, "", "test_fail_all_done_check"], [8, 2, 1, "", "test_get_split_jobex_parsers"], [8, 2, 1, "", "test_get_value"], [8, 2, 1, "", "test_grep_line"], [8, 2, 1, "", "test_properties"]], "turbomoleio.output.tests.test_states": [[8, 3, 1, "", "test_closed"], [8, 3, 1, "", "test_eiger_runner"], [8, 3, 1, "", "test_error_homo"], [8, 3, 1, "", "test_hole"], [8, 3, 1, "", "test_no_empty_states"], [8, 3, 1, "", "test_parsing_failures"], [8, 3, 1, "", "test_state"], [8, 3, 1, "", "test_uhf"]], "turbomoleio.testfiles": [[9, 0, 0, "-", "utils"]], "turbomoleio.testfiles.utils": [[9, 1, 1, "", "ItestConfig"], [9, 6, 1, "", "ItestError"], [9, 3, 1, "", "assert_MSONable"], [9, 3, 1, "", "assert_almost_equal"], [9, 3, 1, "", "compare_differences"], [9, 3, 1, "", "generate_control_for_test"], [9, 3, 1, "", "generate_reference_out_parser_files"], [9, 3, 1, "", "generate_reference_output"], [9, 3, 1, "", "get_control_filepath"], [9, 3, 1, "", "get_control_integration"], [9, 3, 1, "", "get_sp"], [9, 3, 1, "", "get_tfp"], [9, 3, 1, "", "gisnan"], [9, 3, 1, "", "has_matplotlib"], [9, 3, 1, "", "run_itest"], [9, 3, 1, "", "temp_dir"], [9, 3, 1, "", "touch_file"]], "turbomoleio.testfiles.utils.ItestConfig": [[9, 5, 1, "", "define_timeout"], [9, 5, 1, "", "delete_tmp_dir"], [9, 5, 1, "", "dryrun"], [9, 5, 1, "", "dryrun_fpath"], [9, 5, 1, "", "dryrun_use_ref_control"], [9, 5, 1, "", "generate_ref"], [9, 5, 1, "", "tol"]]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:function", "4": "py:property", "5": "py:attribute", "6": "py:exception", "7": "py:data"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"], "4": ["py", "property", "Python property"], "5": ["py", "attribute", "Python attribute"], "6": ["py", "exception", "Python exception"], "7": ["py", "data", "Python data"]}, "titleterms": {"turbomoleio": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 21], "packag": [1, 2, 3, 4, 5, 6, 7, 8, 9], "subpackag": [1, 2, 4, 7], "modul": [1, 2, 3, 4, 5, 6, 7, 8, 9], "content": [1, 2, 3, 4, 5, 6, 7, 8, 9], "core": [2, 3], "submodul": [2, 3, 4, 6, 7, 8, 9], "base": 2, "control": [2, 14], "datagroup": [2, 14], "molecul": 2, "period": [2, 13], "symmetri": 2, "util": [2, 4, 9], "test": [3, 6, 8, 12, 16, 18, 19], "test_control": 3, "test_datagroup": 3, "test_molecul": 3, "test_period": 3, "test_util": [3, 6], "input": [4, 5, 6], "defin": [4, 15, 16], "templat": 5, "test_defin": 6, "output": [7, 8, 18, 19, 23], "data": [7, 14, 23], "file": [7, 13, 14, 23], "parser": 7, "state": [7, 23], "test_data": 8, "test_fil": 8, "test_pars": 8, "test_stat": 8, "testfil": 9, "appendix": 10, "report": 11, "bug": [11, 12], "changelog": 12, "releas": 12, "1": 12, "3": 12, "0": 12, "feb": 12, "24": 12, "2022": 12, "develop": [12, 21], "chang": [12, 19], "2": 12, "16": 12, "15": 12, "featur": 12, "ad": 12, "sep": 12, "20": 12, "2021": 12, "fix": 12, "mar": 12, "11": 12, "The": [13, 14, 15, 19, 23], "coord": 13, "system": 13, "group": 14, "object": [14, 23], "access": 14, "valu": 14, "modifi": 14, "run": 15, "definerunn": 15, "paramet": 15, "valid": [15, 16], "runner": 16, "contribut": [17, 21], "log": [18, 23], "pars": [18, 19, 23], "new": [18, 19], "quantiti": 18, "type": 18, "suit": 19, "unit": 19, "integr": 19, "write": 19, "turbomol": 19, "version": [19, 20], "standard": 19, "procedur": 19, "backward": 20, "compat": 20, "user": 21, "guid": 21, "addit": 21, "inform": 21, "indic": 21, "tabl": 21, "licens": 22, "quick": 23, "start": 23, "overal": 23, "structur": 23, "common": 23}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "sphinx": 58}, "alltitles": {"turbomoleio": [[0, "turbomoleio"], [21, "turbomoleio"]], "turbomoleio package": [[1, "turbomoleio-package"]], "Subpackages": [[1, "subpackages"], [2, "subpackages"], [4, "subpackages"], [7, "subpackages"]], "Module contents": [[1, "module-turbomoleio"], [2, "module-turbomoleio.core"], [3, "module-turbomoleio.core.tests"], [4, "module-turbomoleio.input"], [5, "module-turbomoleio.input.templates"], [6, "module-turbomoleio.input.tests"], [7, "module-turbomoleio.output"], [8, "module-turbomoleio.output.tests"], [9, "module-turbomoleio.testfiles"]], "turbomoleio.core package": [[2, "turbomoleio-core-package"]], "Submodules": [[2, "submodules"], [3, "submodules"], [4, "submodules"], [6, "submodules"], [7, "submodules"], [8, "submodules"], [9, "submodules"]], "turbomoleio.core.base module": [[2, "module-turbomoleio.core.base"]], "turbomoleio.core.control module": [[2, "module-turbomoleio.core.control"]], "turbomoleio.core.datagroups module": [[2, "module-turbomoleio.core.datagroups"]], "turbomoleio.core.molecule module": [[2, "module-turbomoleio.core.molecule"]], "turbomoleio.core.periodic module": [[2, "module-turbomoleio.core.periodic"]], "turbomoleio.core.symmetry module": [[2, "module-turbomoleio.core.symmetry"]], "turbomoleio.core.utils module": [[2, "module-turbomoleio.core.utils"]], "turbomoleio.core.tests package": [[3, "turbomoleio-core-tests-package"]], "turbomoleio.core.tests.test_control module": [[3, "module-turbomoleio.core.tests.test_control"]], "turbomoleio.core.tests.test_datagroups module": [[3, "module-turbomoleio.core.tests.test_datagroups"]], "turbomoleio.core.tests.test_molecule module": [[3, "module-turbomoleio.core.tests.test_molecule"]], "turbomoleio.core.tests.test_periodic module": [[3, "module-turbomoleio.core.tests.test_periodic"]], "turbomoleio.core.tests.test_utils module": [[3, "module-turbomoleio.core.tests.test_utils"]], "turbomoleio.input package": [[4, "turbomoleio-input-package"]], "turbomoleio.input.define module": [[4, "module-turbomoleio.input.define"]], "turbomoleio.input.utils module": [[4, "module-turbomoleio.input.utils"]], "turbomoleio.input.templates package": [[5, "turbomoleio-input-templates-package"]], "turbomoleio.input.tests package": [[6, "turbomoleio-input-tests-package"]], "turbomoleio.input.tests.test_define module": [[6, "module-turbomoleio.input.tests.test_define"]], "turbomoleio.input.tests.test_utils module": [[6, "module-turbomoleio.input.tests.test_utils"]], "turbomoleio.output package": [[7, "turbomoleio-output-package"]], "turbomoleio.output.data module": [[7, "module-turbomoleio.output.data"]], "turbomoleio.output.files module": [[7, "module-turbomoleio.output.files"]], "turbomoleio.output.parser module": [[7, "module-turbomoleio.output.parser"]], "turbomoleio.output.states module": [[7, "module-turbomoleio.output.states"]], "turbomoleio.output.tests package": [[8, "turbomoleio-output-tests-package"]], "turbomoleio.output.tests.test_data module": [[8, "module-turbomoleio.output.tests.test_data"]], "turbomoleio.output.tests.test_files module": [[8, "module-turbomoleio.output.tests.test_files"]], "turbomoleio.output.tests.test_parser module": [[8, "module-turbomoleio.output.tests.test_parser"]], "turbomoleio.output.tests.test_states module": [[8, "module-turbomoleio.output.tests.test_states"]], "turbomoleio.testfiles package": [[9, "turbomoleio-testfiles-package"]], "turbomoleio.testfiles.utils module": [[9, "module-turbomoleio.testfiles.utils"]], "Appendix": [[10, "appendix"]], "Reporting bugs": [[11, "reporting-bugs"]], "Changelog": [[12, "changelog"]], "Release 1.3.0 (Feb 24, 2022)": [[12, "release-1-3-0-feb-24-2022"]], "Developer changes": [[12, "developer-changes"]], "Release 1.2.0 (Feb 16, 2022)": [[12, "release-1-2-0-feb-16-2022"]], "Release 1.1.1 (Feb 15, 2022)": [[12, "release-1-1-1-feb-15-2022"]], "Features added": [[12, "features-added"], [12, "id1"]], "Release 1.1.0 (Sep 20, 2021)": [[12, "release-1-1-0-sep-20-2021"]], "Bug fixing": [[12, "bug-fixing"]], "Testing and development": [[12, "testing-and-development"]], "Release 1.0.0 (Mar 11, 2021)": [[12, "release-1-0-0-mar-11-2021"]], "The coord file": [[13, "the-coord-file"]], "Periodic systems": [[13, "periodic-systems"]], "The data group files": [[14, "the-data-group-files"]], "The DataGroups object": [[14, "the-datagroups-object"]], "Accessing a data group value": [[14, "accessing-a-data-group-value"]], "Modifying a data group value": [[14, "modifying-a-data-group-value"]], "The Control object": [[14, "the-control-object"]], "Running define": [[15, "running-define"]], "The DefineRunner parameters": [[15, "the-definerunner-parameters"]], "Validation": [[15, "validation"], [16, "validation"]], "Define runner": [[16, "define-runner"]], "Tests": [[16, "tests"], [18, "tests"]], "Contributing": [[17, "contributing"]], "Output logs parsing": [[18, "output-logs-parsing"]], "Parsing a new quantity": [[18, "parsing-a-new-quantity"]], "Parsing a new type of log": [[18, "parsing-a-new-type-of-log"]], "Testing": [[19, "testing"]], "The test suite": [[19, "the-test-suite"]], "Unit tests": [[19, "unit-tests"]], "Integration tests": [[19, "integration-tests"], [19, "id1"]], "Writing new tests": [[19, "writing-new-tests"]], "Tests for output parsing": [[19, "tests-for-output-parsing"]], "Turbomole version change": [[19, "turbomole-version-change"]], "Standard procedure": [[19, "standard-procedure"]], "Unit-tests for output parsing": [[19, "unit-tests-for-output-parsing"]], "Versioning": [[20, "versioning"]], "Backward-compatibility": [[20, "backward-compatibility"]], "User guide": [[21, null]], "Contributing to turbomoleio": [[21, "contributing-to-turbomoleio"]], "Developer guide": [[21, null]], "Additional information": [[21, "additional-information"], [21, null]], "Indices and tables": [[21, "indices-and-tables"]], "License": [[22, "license"]], "Outputs parsing": [[23, "outputs-parsing"]], "The log files": [[23, "the-log-files"]], "Quick Start": [[23, "quick-start"]], "Overall Structure": [[23, "overall-structure"]], "Data and File Objects": [[23, "data-and-file-objects"]], "Common data objects": [[23, "common-data-objects"]], "File data objects": [[23, "file-data-objects"]], "The States object": [[23, "the-states-object"]]}, "indexentries": {"module": [[1, "module-turbomoleio"], [2, "module-turbomoleio.core"], [2, "module-turbomoleio.core.base"], [2, "module-turbomoleio.core.control"], [2, "module-turbomoleio.core.datagroups"], [2, "module-turbomoleio.core.molecule"], [2, "module-turbomoleio.core.periodic"], [2, "module-turbomoleio.core.symmetry"], [2, "module-turbomoleio.core.utils"], [3, "module-turbomoleio.core.tests"], [3, "module-turbomoleio.core.tests.test_control"], [3, "module-turbomoleio.core.tests.test_datagroups"], [3, "module-turbomoleio.core.tests.test_molecule"], [3, "module-turbomoleio.core.tests.test_periodic"], [3, "module-turbomoleio.core.tests.test_utils"], [4, "module-turbomoleio.input"], [4, "module-turbomoleio.input.define"], [4, "module-turbomoleio.input.utils"], [5, "module-turbomoleio.input.templates"], [6, "module-turbomoleio.input.tests"], [6, "module-turbomoleio.input.tests.test_define"], [6, "module-turbomoleio.input.tests.test_utils"], [7, "module-turbomoleio.output"], [7, "module-turbomoleio.output.data"], [7, "module-turbomoleio.output.files"], [7, "module-turbomoleio.output.parser"], [7, "module-turbomoleio.output.states"], [8, "module-turbomoleio.output.tests"], [8, "module-turbomoleio.output.tests.test_data"], [8, "module-turbomoleio.output.tests.test_files"], [8, "module-turbomoleio.output.tests.test_parser"], [8, "module-turbomoleio.output.tests.test_states"], [9, "module-turbomoleio.testfiles"], [9, "module-turbomoleio.testfiles.utils"]], "turbomoleio": [[1, "module-turbomoleio"]], "basesystem (class in turbomoleio.core.base)": [[2, "turbomoleio.core.base.BaseSystem"]], "bondangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.BondAngle"]], "collinearbendingangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle"]], "control (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Control"]], "datagroups (class in turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.DataGroups"]], "defaults (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Defaults"]], "dihedralangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.DihedralAngle"]], "distance (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.Distance"]], "energy (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Energy"]], "gradient (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Gradient"]], "internaldefinition (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.InternalDefinition"]], "inversedistance (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.InverseDistance"]], "metric (turbomoleio.core.control.defaults attribute)": [[2, "turbomoleio.core.control.Defaults.METRIC"]], "moleculesystem (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.MoleculeSystem"]], "outofplaneangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle"]], "periodicsystem (class in turbomoleio.core.periodic)": [[2, "turbomoleio.core.periodic.PeriodicSystem"]], "perpendicularbendingangle (class in turbomoleio.core.molecule)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle"]], "shells (class in turbomoleio.core.control)": [[2, "turbomoleio.core.control.Shells"]], "add_bond_angle() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.add_bond_angle"]], "add_cosmo() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.add_cosmo"]], "add_data_group() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.add_data_group"]], "add_dihedral() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.add_dihedral"]], "add_distance() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.add_distance"]], "adg() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.adg"]], "adg() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.adg"]], "as_dict() (turbomoleio.core.control.shells method)": [[2, "turbomoleio.core.control.Shells.as_dict"]], "as_dict() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.as_dict"]], "as_dict() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.as_dict"]], "as_dict() (turbomoleio.core.periodic.periodicsystem method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.as_dict"]], "cdg() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.cdg"]], "cdg() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.cdg"]], "change_data_group() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.change_data_group"]], "cleanup_string() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.cleanup_string"]], "compare() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.compare"]], "compare_datagroup_string() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.compare_datagroup_string"]], "compute_value() (turbomoleio.core.molecule.bondangle method)": [[2, "turbomoleio.core.molecule.BondAngle.compute_value"]], "compute_value() (turbomoleio.core.molecule.collinearbendingangle method)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle.compute_value"]], "compute_value() (turbomoleio.core.molecule.dihedralangle method)": [[2, "turbomoleio.core.molecule.DihedralAngle.compute_value"]], "compute_value() (turbomoleio.core.molecule.distance method)": [[2, "turbomoleio.core.molecule.Distance.compute_value"]], "compute_value() (turbomoleio.core.molecule.internaldefinition method)": [[2, "turbomoleio.core.molecule.InternalDefinition.compute_value"]], "compute_value() (turbomoleio.core.molecule.inversedistance method)": [[2, "turbomoleio.core.molecule.InverseDistance.compute_value"]], "compute_value() (turbomoleio.core.molecule.outofplaneangle method)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle.compute_value"]], "compute_value() (turbomoleio.core.molecule.perpendicularbendingangle method)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle.compute_value"]], "coord_lines() (turbomoleio.core.base.basesystem method)": [[2, "turbomoleio.core.base.BaseSystem.coord_lines"]], "coord_str (turbomoleio.core.molecule.bondangle attribute)": [[2, "turbomoleio.core.molecule.BondAngle.coord_str"]], "coord_str (turbomoleio.core.molecule.collinearbendingangle attribute)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle.coord_str"]], "coord_str (turbomoleio.core.molecule.dihedralangle attribute)": [[2, "turbomoleio.core.molecule.DihedralAngle.coord_str"]], "coord_str (turbomoleio.core.molecule.distance attribute)": [[2, "turbomoleio.core.molecule.Distance.coord_str"]], "coord_str (turbomoleio.core.molecule.internaldefinition attribute)": [[2, "turbomoleio.core.molecule.InternalDefinition.coord_str"]], "coord_str (turbomoleio.core.molecule.inversedistance attribute)": [[2, "turbomoleio.core.molecule.InverseDistance.coord_str"]], "coord_str (turbomoleio.core.molecule.outofplaneangle attribute)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle.coord_str"]], "coord_str (turbomoleio.core.molecule.perpendicularbendingangle attribute)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle.coord_str"]], "coord_type (turbomoleio.core.molecule.bondangle attribute)": [[2, "turbomoleio.core.molecule.BondAngle.coord_type"]], "coord_type (turbomoleio.core.molecule.collinearbendingangle attribute)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle.coord_type"]], "coord_type (turbomoleio.core.molecule.dihedralangle attribute)": [[2, "turbomoleio.core.molecule.DihedralAngle.coord_type"]], "coord_type (turbomoleio.core.molecule.distance attribute)": [[2, "turbomoleio.core.molecule.Distance.coord_type"]], "coord_type (turbomoleio.core.molecule.internaldefinition attribute)": [[2, "turbomoleio.core.molecule.InternalDefinition.coord_type"]], "coord_type (turbomoleio.core.molecule.inversedistance attribute)": [[2, "turbomoleio.core.molecule.InverseDistance.coord_type"]], "coord_type (turbomoleio.core.molecule.outofplaneangle attribute)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle.coord_type"]], "coord_type (turbomoleio.core.molecule.perpendicularbendingangle attribute)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle.coord_type"]], "cpc() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.cpc"]], "cpc() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.cpc"]], "define_quit() (in module turbomoleio.core.utils)": [[2, "turbomoleio.core.utils.define_quit"]], "delta_e (turbomoleio.core.control.energy property)": [[2, "turbomoleio.core.control.Energy.delta_e"]], "empty() (turbomoleio.core.datagroups.datagroups class method)": [[2, "turbomoleio.core.datagroups.DataGroups.empty"]], "energy (turbomoleio.core.control.control property)": [[2, "turbomoleio.core.control.Control.energy"]], "from_dict() (turbomoleio.core.control.shells class method)": [[2, "turbomoleio.core.control.Shells.from_dict"]], "from_dict() (turbomoleio.core.datagroups.datagroups class method)": [[2, "turbomoleio.core.datagroups.DataGroups.from_dict"]], "from_dict() (turbomoleio.core.molecule.moleculesystem class method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.from_dict"]], "from_dict() (turbomoleio.core.periodic.periodicsystem class method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.from_dict"]], "from_file() (turbomoleio.core.control.control class method)": [[2, "turbomoleio.core.control.Control.from_file"]], "from_file() (turbomoleio.core.control.energy class method)": [[2, "turbomoleio.core.control.Energy.from_file"]], "from_file() (turbomoleio.core.control.gradient class method)": [[2, "turbomoleio.core.control.Gradient.from_file"]], "from_file() (turbomoleio.core.control.shells class method)": [[2, "turbomoleio.core.control.Shells.from_file"]], "from_file() (turbomoleio.core.datagroups.datagroups class method)": [[2, "turbomoleio.core.datagroups.DataGroups.from_file"]], "from_file() (turbomoleio.core.molecule.moleculesystem class method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.from_file"]], "from_file() (turbomoleio.core.periodic.periodicsystem class method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.from_file"]], "from_metric() (turbomoleio.core.control.control class method)": [[2, "turbomoleio.core.control.Control.from_metric"]], "from_string() (turbomoleio.core.control.energy class method)": [[2, "turbomoleio.core.control.Energy.from_string"]], "from_string() (turbomoleio.core.control.gradient class method)": [[2, "turbomoleio.core.control.Gradient.from_string"]], "from_string() (turbomoleio.core.control.shells class method)": [[2, "turbomoleio.core.control.Shells.from_string"]], "from_string() (turbomoleio.core.molecule.internaldefinition class method)": [[2, "turbomoleio.core.molecule.InternalDefinition.from_string"]], "from_string() (turbomoleio.core.molecule.moleculesystem class method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.from_string"]], "from_string() (turbomoleio.core.periodic.periodicsystem class method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.from_string"]], "get_charge() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.get_charge"]], "get_coord_lines() (in module turbomoleio.core.base)": [[2, "turbomoleio.core.base.get_coord_lines"]], "get_int_def_inconsistencies() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.get_int_def_inconsistencies"]], "get_mol_and_indices_frozen() (in module turbomoleio.core.base)": [[2, "turbomoleio.core.base.get_mol_and_indices_frozen"]], "get_shells() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.get_shells"]], "get_subclass_from_str() (turbomoleio.core.molecule.internaldefinition static method)": [[2, "turbomoleio.core.molecule.InternalDefinition.get_subclass_from_str"]], "get_subfiles_list() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.get_subfiles_list"]], "get_tm_version() (in module turbomoleio.core.utils)": [[2, "turbomoleio.core.utils.get_tm_version"]], "gradient (turbomoleio.core.control.control property)": [[2, "turbomoleio.core.control.Control.gradient"]], "has_inconsistencies() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.has_inconsistencies"]], "irreps (turbomoleio.core.control.shells property)": [[2, "turbomoleio.core.control.Shells.irreps"]], "is_uhf (turbomoleio.core.control.control property)": [[2, "turbomoleio.core.control.Control.is_uhf"]], "is_valid() (turbomoleio.core.molecule.internaldefinition method)": [[2, "turbomoleio.core.molecule.InternalDefinition.is_valid"]], "kdg() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.kdg"]], "kdg() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.kdg"]], "kill_data_group() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.kill_data_group"]], "last_grad_max (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.last_grad_max"]], "last_grad_norm (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.last_grad_norm"]], "max_gradients (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.max_gradients"]], "mdgo() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.mdgo"]], "mdgo() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.mdgo"]], "modify_data_group_options() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.modify_data_group_options"]], "molecule (turbomoleio.core.molecule.moleculesystem property)": [[2, "turbomoleio.core.molecule.MoleculeSystem.molecule"]], "n_atoms (turbomoleio.core.molecule.bondangle attribute)": [[2, "turbomoleio.core.molecule.BondAngle.n_atoms"]], "n_atoms (turbomoleio.core.molecule.collinearbendingangle attribute)": [[2, "turbomoleio.core.molecule.CollinearBendingAngle.n_atoms"]], "n_atoms (turbomoleio.core.molecule.dihedralangle attribute)": [[2, "turbomoleio.core.molecule.DihedralAngle.n_atoms"]], "n_atoms (turbomoleio.core.molecule.distance attribute)": [[2, "turbomoleio.core.molecule.Distance.n_atoms"]], "n_atoms (turbomoleio.core.molecule.internaldefinition attribute)": [[2, "turbomoleio.core.molecule.InternalDefinition.n_atoms"]], "n_atoms (turbomoleio.core.molecule.inversedistance attribute)": [[2, "turbomoleio.core.molecule.InverseDistance.n_atoms"]], "n_atoms (turbomoleio.core.molecule.outofplaneangle attribute)": [[2, "turbomoleio.core.molecule.OutOfPlaneAngle.n_atoms"]], "n_atoms (turbomoleio.core.molecule.perpendicularbendingangle attribute)": [[2, "turbomoleio.core.molecule.PerpendicularBendingAngle.n_atoms"]], "n_steps (turbomoleio.core.control.energy property)": [[2, "turbomoleio.core.control.Energy.n_steps"]], "n_steps (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.n_steps"]], "ndg (turbomoleio.core.datagroups.datagroups property)": [[2, "turbomoleio.core.datagroups.DataGroups.ndg"]], "norms (turbomoleio.core.control.gradient property)": [[2, "turbomoleio.core.control.Gradient.norms"]], "number_of_data_groups (turbomoleio.core.datagroups.datagroups property)": [[2, "turbomoleio.core.datagroups.DataGroups.number_of_data_groups"]], "plot() (turbomoleio.core.control.energy method)": [[2, "turbomoleio.core.control.Energy.plot"]], "plot() (turbomoleio.core.control.gradient method)": [[2, "turbomoleio.core.control.Gradient.plot"]], "remove_comments() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.remove_comments"]], "remove_dg_from_list() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.remove_dg_from_list"]], "remove_last_energy() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.remove_last_energy"]], "remove_last_gradient() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.remove_last_gradient"]], "sdg() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.sdg"]], "sdg() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.sdg"]], "sdgo() (in module turbomoleio.core.control)": [[2, "turbomoleio.core.control.sdgo"]], "sdgo() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.sdgo"]], "set_disp() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.set_disp"]], "show_data_group() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.show_data_group"]], "show_data_group_option() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.show_data_group_option"]], "show_subfile_fname() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.show_subfile_fname"]], "split_string_to_dg_list() (in module turbomoleio.core.datagroups)": [[2, "turbomoleio.core.datagroups.split_string_to_dg_list"]], "structure (turbomoleio.core.periodic.periodicsystem property)": [[2, "turbomoleio.core.periodic.PeriodicSystem.structure"]], "to_coord_file() (turbomoleio.core.base.basesystem method)": [[2, "turbomoleio.core.base.BaseSystem.to_coord_file"]], "to_coord_string() (turbomoleio.core.base.basesystem method)": [[2, "turbomoleio.core.base.BaseSystem.to_coord_string"]], "to_coord_string() (turbomoleio.core.molecule.moleculesystem method)": [[2, "turbomoleio.core.molecule.MoleculeSystem.to_coord_string"]], "to_coord_string() (turbomoleio.core.periodic.periodicsystem method)": [[2, "turbomoleio.core.periodic.PeriodicSystem.to_coord_string"]], "to_datagroup() (turbomoleio.core.control.shells method)": [[2, "turbomoleio.core.control.Shells.to_datagroup"]], "to_file() (turbomoleio.core.base.basesystem method)": [[2, "turbomoleio.core.base.BaseSystem.to_file"]], "to_file() (turbomoleio.core.control.control method)": [[2, "turbomoleio.core.control.Control.to_file"]], "to_file() (turbomoleio.core.datagroups.datagroups method)": [[2, "turbomoleio.core.datagroups.DataGroups.to_file"]], "to_string() (turbomoleio.core.molecule.internaldefinition method)": [[2, "turbomoleio.core.molecule.InternalDefinition.to_string"]], "total_electrons (turbomoleio.core.control.shells property)": [[2, "turbomoleio.core.control.Shells.total_electrons"]], "turbomoleio.core": [[2, "module-turbomoleio.core"]], "turbomoleio.core.base": [[2, "module-turbomoleio.core.base"]], "turbomoleio.core.control": [[2, "module-turbomoleio.core.control"]], "turbomoleio.core.datagroups": [[2, "module-turbomoleio.core.datagroups"]], "turbomoleio.core.molecule": [[2, "module-turbomoleio.core.molecule"]], "turbomoleio.core.periodic": [[2, "module-turbomoleio.core.periodic"]], "turbomoleio.core.symmetry": [[2, "module-turbomoleio.core.symmetry"]], "turbomoleio.core.utils": [[2, "module-turbomoleio.core.utils"]], "testcontrol (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestControl"]], "testdatagroupfunctions (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions"]], "testenergy (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestEnergy"]], "testgetversion (class in turbomoleio.core.tests.test_utils)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion"]], "testgradient (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestGradient"]], "testinternaldefinition (class in turbomoleio.core.tests.test_molecule)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition"]], "testmoleculesystem (class in turbomoleio.core.tests.test_molecule)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem"]], "testperiodicsystem (class in turbomoleio.core.tests.test_periodic)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem"]], "testshells (class in turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.TestShells"]], "check_dg() (in module turbomoleio.core.tests.test_molecule)": [[3, "turbomoleio.core.tests.test_molecule.check_dg"]], "check_equivalent_dg() (in module turbomoleio.core.tests.test_control)": [[3, "turbomoleio.core.tests.test_control.check_equivalent_dg"]], "check_user_defined_bonds_dg() (in module turbomoleio.core.tests.test_molecule)": [[3, "turbomoleio.core.tests.test_molecule.check_user_defined_bonds_dg"]], "pytestmark (turbomoleio.core.tests.test_control.testdatagroupfunctions attribute)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.pytestmark"]], "pytestmark (turbomoleio.core.tests.test_molecule.testinternaldefinition attribute)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.pytestmark"]], "test_v72() (turbomoleio.core.tests.test_utils.testgetversion method)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion.test_V72"]], "test_v731() (turbomoleio.core.tests.test_utils.testgetversion method)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion.test_V731"]], "test_v741() (turbomoleio.core.tests.test_utils.testgetversion method)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion.test_V741"]], "test_v751() (turbomoleio.core.tests.test_utils.testgetversion method)": [[3, "turbomoleio.core.tests.test_utils.TestGetVersion.test_V751"]], "test_add_bond_angle() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_add_bond_angle"]], "test_add_cosmo() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_add_cosmo"]], "test_add_dihedral() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_add_dihedral"]], "test_add_distance() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_add_distance"]], "test_adg() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_adg"]], "test_bond_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_bond_angle"]], "test_cdg() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_cdg"]], "test_check_index() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_check_index"]], "test_cleanup() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_cleanup"]], "test_closed() (turbomoleio.core.tests.test_control.testshells method)": [[3, "turbomoleio.core.tests.test_control.TestShells.test_closed"]], "test_collinear_bending_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_collinear_bending_angle"]], "test_compare() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_compare"]], "test_compare_datagroup_string() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_compare_datagroup_string"]], "test_cpc() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_cpc"]], "test_cpc() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_cpc"]], "test_datagroups() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_datagroups"]], "test_dihedral_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_dihedral_angle"]], "test_disordered() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_disordered"]], "test_disp() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_disp"]], "test_distance() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_distance"]], "test_dummy_atoms() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_dummy_atoms"]], "test_empty() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_empty"]], "test_empty_gradient() (turbomoleio.core.tests.test_control.testgradient method)": [[3, "turbomoleio.core.tests.test_control.TestGradient.test_empty_gradient"]], "test_energy() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_energy"]], "test_energy_mp2() (turbomoleio.core.tests.test_control.testenergy method)": [[3, "turbomoleio.core.tests.test_control.TestEnergy.test_energy_mp2"]], "test_energy_scf() (turbomoleio.core.tests.test_control.testenergy method)": [[3, "turbomoleio.core.tests.test_control.TestEnergy.test_energy_scf"]], "test_fail_parse() (turbomoleio.core.tests.test_control.testshells method)": [[3, "turbomoleio.core.tests.test_control.TestShells.test_fail_parse"]], "test_fail_parsing() (turbomoleio.core.tests.test_control.testgradient method)": [[3, "turbomoleio.core.tests.test_control.TestGradient.test_fail_parsing"]], "test_fractional() (turbomoleio.core.tests.test_control.testshells method)": [[3, "turbomoleio.core.tests.test_control.TestShells.test_fractional"]], "test_from_file() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_from_file"]], "test_from_metric() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_from_metric"]], "test_from_string() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_from_string"]], "test_from_string() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_from_string"]], "test_get_charge() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_get_charge"]], "test_get_shells() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_get_shells"]], "test_get_subfiles_list() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_get_subfiles_list"]], "test_gradient() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_gradient"]], "test_gradient() (turbomoleio.core.tests.test_control.testgradient method)": [[3, "turbomoleio.core.tests.test_control.TestGradient.test_gradient"]], "test_inverse_distance() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_inverse_distance"]], "test_is_uhf() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_is_uhf"]], "test_kdg() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_kdg"]], "test_mdgo() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_mdgo"]], "test_modify_data_group_options() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_modify_data_group_options"]], "test_out_of_plane_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_out_of_plane_angle"]], "test_periodic() (turbomoleio.core.tests.test_control.testgradient method)": [[3, "turbomoleio.core.tests.test_control.TestGradient.test_periodic"]], "test_periodic_2d() (turbomoleio.core.tests.test_periodic.testperiodicsystem method)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem.test_periodic_2d"]], "test_periodic_3d() (turbomoleio.core.tests.test_periodic.testperiodicsystem method)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem.test_periodic_3d"]], "test_periodic_wrong_rotation() (turbomoleio.core.tests.test_periodic.testperiodicsystem method)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem.test_periodic_wrong_rotation"]], "test_perpendicular_bending_angle() (turbomoleio.core.tests.test_molecule.testinternaldefinition method)": [[3, "turbomoleio.core.tests.test_molecule.TestInternalDefinition.test_perpendicular_bending_angle"]], "test_read_periodic_2d() (turbomoleio.core.tests.test_periodic.testperiodicsystem method)": [[3, "turbomoleio.core.tests.test_periodic.TestPeriodicSystem.test_read_periodic_2d"]], "test_remove_comments() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_remove_comments"]], "test_remove_dg_from_list() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_remove_dg_from_list"]], "test_remove_energy() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_remove_energy"]], "test_remove_energy_in_control() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_remove_energy_in_control"]], "test_remove_gradient() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_remove_gradient"]], "test_remove_gradient_in_control() (turbomoleio.core.tests.test_control.testcontrol method)": [[3, "turbomoleio.core.tests.test_control.TestControl.test_remove_gradient_in_control"]], "test_sdg() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_sdg"]], "test_sdg_subfiles() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_sdg_subfiles"]], "test_sdgo() (turbomoleio.core.tests.test_control.testdatagroupfunctions method)": [[3, "turbomoleio.core.tests.test_control.TestDatagroupFunctions.test_sdgo"]], "test_show_data_group_option() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_show_data_group_option"]], "test_show_subfile_fname() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_show_subfile_fname"]], "test_split_string_to_dg_list() (in module turbomoleio.core.tests.test_datagroups)": [[3, "turbomoleio.core.tests.test_datagroups.test_split_string_to_dg_list"]], "test_to_coord_string() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_to_coord_string"]], "test_to_file() (turbomoleio.core.tests.test_molecule.testmoleculesystem method)": [[3, "turbomoleio.core.tests.test_molecule.TestMoleculeSystem.test_to_file"]], "test_uhf() (turbomoleio.core.tests.test_control.testshells method)": [[3, "turbomoleio.core.tests.test_control.TestShells.test_uhf"]], "turbomoleio.core.tests": [[3, "module-turbomoleio.core.tests"]], "turbomoleio.core.tests.test_control": [[3, "module-turbomoleio.core.tests.test_control"]], "turbomoleio.core.tests.test_datagroups": [[3, "module-turbomoleio.core.tests.test_datagroups"]], "turbomoleio.core.tests.test_molecule": [[3, "module-turbomoleio.core.tests.test_molecule"]], "turbomoleio.core.tests.test_periodic": [[3, "module-turbomoleio.core.tests.test_periodic"]], "turbomoleio.core.tests.test_utils": [[3, "module-turbomoleio.core.tests.test_utils"]], "defineerror": [[4, "turbomoleio.input.define.DefineError"]], "defineexpecterror": [[4, "turbomoleio.input.define.DefineExpectError"]], "defineirederror": [[4, "turbomoleio.input.define.DefineIredError"]], "defineparametererror": [[4, "turbomoleio.input.define.DefineParameterError"]], "definerunner (class in turbomoleio.input.define)": [[4, "turbomoleio.input.define.DefineRunner"]], "parametersvalidationerror": [[4, "turbomoleio.input.utils.ParametersValidationError"]], "unsupporteddefinestateerror": [[4, "turbomoleio.input.define.UnsupportedDefineStateError"]], "dump_command_file() (turbomoleio.input.define.definerunner method)": [[4, "turbomoleio.input.define.DefineRunner.dump_command_file"]], "ex_setter() (in module turbomoleio.input.utils)": [[4, "turbomoleio.input.utils.ex_setter"]], "get_define_template() (in module turbomoleio.input.utils)": [[4, "turbomoleio.input.utils.get_define_template"]], "run_full() (turbomoleio.input.define.definerunner method)": [[4, "turbomoleio.input.define.DefineRunner.run_full"]], "run_generate_mo_files() (turbomoleio.input.define.definerunner method)": [[4, "turbomoleio.input.define.DefineRunner.run_generate_mo_files"]], "run_update_internal_coords() (turbomoleio.input.define.definerunner method)": [[4, "turbomoleio.input.define.DefineRunner.run_update_internal_coords"]], "schema_define_params (in module turbomoleio.input.utils)": [[4, "turbomoleio.input.utils.schema_define_params"]], "turbomoleio.input": [[4, "module-turbomoleio.input"]], "turbomoleio.input.define": [[4, "module-turbomoleio.input.define"]], "turbomoleio.input.utils": [[4, "module-turbomoleio.input.utils"]], "validate_parameters() (in module turbomoleio.input.utils)": [[4, "turbomoleio.input.utils.validate_parameters"]], "turbomoleio.input.templates": [[5, "module-turbomoleio.input.templates"]], "testdefinerunner (class in turbomoleio.input.tests.test_define)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner"]], "testexceptions (class in turbomoleio.input.tests.test_define)": [[6, "turbomoleio.input.tests.test_define.TestExceptions"]], "assert_sendline_calls() (turbomoleio.input.tests.test_define.testdefinerunner static method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.assert_sendline_calls"]], "assert_sendline_has_calls() (turbomoleio.input.tests.test_define.testdefinerunner static method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.assert_sendline_has_calls"]], "dr_data() (in module turbomoleio.input.tests.test_define)": [[6, "turbomoleio.input.tests.test_define.dr_data"]], "test_add_atomic_coordinates_from_file() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_add_atomic_coordinates_from_file"]], "test_add_atomic_coordinates_from_file_cartesian() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_add_atomic_coordinates_from_file_cartesian"]], "test_add_cosmo() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_add_cosmo"]], "test_close() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_close"]], "test_copy_mo_files_ab_mos() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_copy_mo_files_ab_mos"]], "test_copy_mo_files_alpha_beta() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_copy_mo_files_alpha_beta"]], "test_copy_mo_files_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_copy_mo_files_error"]], "test_copy_mo_files_mo() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_copy_mo_files_mo"]], "test_create() (turbomoleio.input.tests.test_define.testexceptions method)": [[6, "turbomoleio.input.tests.test_define.TestExceptions.test_create"]], "test_define_basis_sets() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_define_basis_sets"]], "test_define_core_potentials() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_define_core_potentials"]], "test_define_symmetry() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_define_symmetry"]], "test_define_symmetry_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_define_symmetry_error"]], "test_determine_symmetry() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_determine_symmetry"]], "test_determine_symmetry_eps() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_determine_symmetry_eps"]], "test_dump_command_file() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_dump_command_file"]], "test_excited_state_menu_error_not_activated() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_error_not_activated"]], "test_excited_state_menu_frequency() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_frequency"]], "test_excited_state_menu_irrep() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_irrep"]], "test_excited_state_menu_irrep_wrong_sym() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_irrep_wrong_sym"]], "test_excited_state_menu_polly() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_polly"]], "test_excited_state_menu_rpas() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_rpas"]], "test_excited_state_menu_urpa() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_urpa"]], "test_excited_state_menu_urpa_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_urpa_error"]], "test_excited_state_menu_wrong_ex_method() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_wrong_ex_method"]], "test_excited_state_menu_wrong_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_excited_state_menu_wrong_menu"]], "test_existing_coordinates() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates"]], "test_existing_coordinates_cartesian() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates_cartesian"]], "test_existing_coordinates_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates_error"]], "test_existing_coordinates_no_update() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates_no_update"]], "test_existing_coordinates_unsupported() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_existing_coordinates_unsupported"]], "test_expect() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_expect"]], "test_expect_raise_eof() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_expect_raise_eof"]], "test_expect_raise_timeout() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_expect_raise_timeout"]], "test_extended_hueckel_theory_menu_charge() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_charge"]], "test_extended_hueckel_theory_menu_default() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_default"]], "test_extended_hueckel_theory_menu_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_error"]], "test_extended_hueckel_theory_menu_nocharge() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_nocharge"]], "test_extended_hueckel_theory_menu_unpaired() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_extended_hueckel_theory_menu_unpaired"]], "test_general_menu_ccsdt() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_general_menu_ccsdt"]], "test_general_menu_dft() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_general_menu_dft"]], "test_general_menu_hf() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_general_menu_hf"]], "test_general_menu_wrong_method() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_general_menu_wrong_method"]], "test_generate_internal_coordinates() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_generate_internal_coordinates"]], "test_generate_internal_coordinates_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_generate_internal_coordinates_error"]], "test_geometry_menu_copymo() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_copymo"]], "test_geometry_menu_incompatibility_1() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_incompatibility_1"]], "test_geometry_menu_incompatibility_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_incompatibility_2"]], "test_geometry_menu_new_coords_1() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_new_coords_1"]], "test_geometry_menu_new_coords_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_new_coords_2"]], "test_geometry_menu_new_coords_3() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_new_coords_3"]], "test_geometry_menu_new_coords_4() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_new_coords_4"]], "test_geometry_menu_no_new_coords() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_geometry_menu_no_new_coords"]], "test_get_bin_path() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_get_bin_path"]], "test_get_define_template() (in module turbomoleio.input.tests.test_utils)": [[6, "turbomoleio.input.tests.test_utils.test_get_define_template"]], "test_go_to_general_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_go_to_general_menu"]], "test_init() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_init"]], "test_initialize_control_1() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_initialize_control_1"]], "test_initialize_control_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_initialize_control_2"]], "test_initialize_control_incompatibility() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_initialize_control_incompatibility"]], "test_is_alive() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_is_alive"]], "test_postprocess() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_postprocess"]], "test_quit_general_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_quit_general_menu"]], "test_run_full_1() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_full_1"]], "test_run_full_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_full_2"]], "test_run_generate_mo_files() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_generate_mo_files"]], "test_run_generate_mo_files_sym() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_generate_mo_files_sym"]], "test_run_update_internal_coords() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_update_internal_coords"]], "test_run_update_internal_coords_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_run_update_internal_coords_error"]], "test_sendline() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_sendline"]], "test_set_basis() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_basis"]], "test_set_basis_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_basis_error"]], "test_set_basis_error_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_basis_error_2"]], "test_set_basis_error_3() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_basis_error_3"]], "test_set_dft_options_no_dft() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_dft_options_no_dft"]], "test_set_dft_options_use_dft() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_dft_options_use_dft"]], "test_set_dft_options_wrong_xc() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_dft_options_wrong_xc"]], "test_set_ecp_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ecp_error"]], "test_set_ecp_error_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ecp_error_2"]], "test_set_ecp_error_3() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ecp_error_3"]], "test_set_metric() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_metric"]], "test_set_mo_from_control_file() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mo_from_control_file"]], "test_set_mo_from_control_file_2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mo_from_control_file_2"]], "test_set_mo_from_control_file_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mo_from_control_file_error"]], "test_set_mo_from_control_file_longpath() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mo_from_control_file_longpath"]], "test_set_mp2_options() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options"]], "test_set_mp2_options_f12() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options_f12"]], "test_set_mp2_options_geoopt() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options_geoopt"]], "test_set_mp2_options_mp2() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options_mp2"]], "test_set_mp2_options_mp2_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_mp2_options_mp2_error"]], "test_set_ri_state() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ri_state"]], "test_set_ri_state_marij() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_ri_state_marij"]], "test_set_scf_options() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_set_scf_options"]], "test_skip_atomic_attribute_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_skip_atomic_attribute_menu"]], "test_skip_atomic_attribute_menu_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_skip_atomic_attribute_menu_error"]], "test_skip_atomic_attribute_menu_internal() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_skip_atomic_attribute_menu_internal"]], "test_switch_to_atomic_attribute_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_atomic_attribute_menu"]], "test_switch_to_atomic_attribute_menu_internal() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_atomic_attribute_menu_internal"]], "test_switch_to_atomic_attribute_menu_internal_error() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_atomic_attribute_menu_internal_error"]], "test_switch_to_molecular_orbital_definition_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_molecular_orbital_definition_menu"]], "test_switch_to_scf_menu() (turbomoleio.input.tests.test_define.testdefinerunner method)": [[6, "turbomoleio.input.tests.test_define.TestDefineRunner.test_switch_to_scf_menu"]], "test_validate_parameters() (in module turbomoleio.input.tests.test_utils)": [[6, "turbomoleio.input.tests.test_utils.test_validate_parameters"]], "turbomoleio.input.tests": [[6, "module-turbomoleio.input.tests"]], "turbomoleio.input.tests.test_define": [[6, "module-turbomoleio.input.tests.test_define"]], "turbomoleio.input.tests.test_utils": [[6, "module-turbomoleio.input.tests.test_utils"]], "aoforcenumericalintegrationdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.AoforceNumericalIntegrationData"]], "aoforceoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.AoforceOutput"]], "aoforcerotationaldata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.AoforceRotationalData"]], "aoforcevibrationaldata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.AoforceVibrationalData"]], "basedata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.BaseData"]], "basisdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.BasisData"]], "cosmodata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.CosmoData"]], "dftdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.DFTData"]], "dispersioncorrectiondata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.DispersionCorrectionData"]], "egradoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.EgradOutput"]], "eigeroutput (class in turbomoleio.output.states)": [[7, "turbomoleio.output.states.EigerOutput"]], "eigerrunner (class in turbomoleio.output.states)": [[7, "turbomoleio.output.states.EigerRunner"]], "electrostaticmomentsdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.ElectrostaticMomentsData"]], "escfdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.EscfData"]], "escfiterationdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.EscfIterationData"]], "escfonlyoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.EscfOnlyOutput"]], "escfoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.EscfOutput"]], "functionaldata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.FunctionalData"]], "geometrydata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.GeometryData"]], "gradoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.GradOutput"]], "integraldata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.IntegralData"]], "jobexoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.JobexOutput"]], "mp2data (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.MP2Data"]], "mp2output (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.MP2Output"]], "mp2results (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.MP2Results"]], "parser (class in turbomoleio.output.parser)": [[7, "turbomoleio.output.parser.Parser"]], "periodicitydata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.PeriodicityData"]], "relaxconvergencedata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RelaxConvergenceData"]], "relaxdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RelaxData"]], "relaxgradientsdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RelaxGradientsData"]], "relaxoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.RelaxOutput"]], "ridata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RiData"]], "ricc2output (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.Ricc2Output"]], "rundata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.RunData"]], "scfdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.ScfData"]], "scfenergiesdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.ScfEnergiesData"]], "scfiterationdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.ScfIterationData"]], "scfoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.ScfOutput"]], "singleexcitation (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.SingleExcitation"]], "smearingdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.SmearingData"]], "spindata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.SpinData"]], "state (class in turbomoleio.output.states)": [[7, "turbomoleio.output.states.State"]], "states (class in turbomoleio.output.states)": [[7, "turbomoleio.output.states.States"]], "statptdata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.StatptData"]], "statptoutput (class in turbomoleio.output.files)": [[7, "turbomoleio.output.files.StatptOutput"]], "symmetrydata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.SymmetryData"]], "turbomoledata (class in turbomoleio.output.data)": [[7, "turbomoleio.output.data.TurbomoleData"]], "all_done() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.all_done"]], "aoforce_analysis() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.aoforce_analysis"]], "aoforce_numerical_integration() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.aoforce_numerical_integration"]], "as_dict() (turbomoleio.output.states.state method)": [[7, "turbomoleio.output.states.State.as_dict"]], "as_dict() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.as_dict"]], "basis() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.basis"]], "centers() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.centers"]], "compare_states() (turbomoleio.output.states.eigeroutput method)": [[7, "turbomoleio.output.states.EigerOutput.compare_states"]], "convert_float() (in module turbomoleio.output.parser)": [[7, "turbomoleio.output.parser.convert_float"]], "convert_int() (in module turbomoleio.output.parser)": [[7, "turbomoleio.output.parser.convert_int"]], "convert_time_string() (in module turbomoleio.output.parser)": [[7, "turbomoleio.output.parser.convert_time_string"]], "coordinates() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.coordinates"]], "cosmo_header() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.cosmo_header"]], "cosmo_results() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.cosmo_results"]], "density_functional_data() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.density_functional_data"]], "dftd() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.dftd"]], "egrad_excited_state() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.egrad_excited_state"]], "eigenvalues (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.eigenvalues"]], "electrostatic_moments() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.electrostatic_moments"]], "escf_excitations() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.escf_excitations"]], "escf_gs_total_en() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.escf_gs_total_en"]], "escf_iterations() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.escf_iterations"]], "fermi() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.fermi"]], "filter_states() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.filter_states"]], "from_dict() (turbomoleio.output.states.state class method)": [[7, "turbomoleio.output.states.State.from_dict"]], "from_file() (turbomoleio.output.data.basedata class method)": [[7, "turbomoleio.output.data.BaseData.from_file"]], "from_file() (turbomoleio.output.parser.parser class method)": [[7, "turbomoleio.output.parser.Parser.from_file"]], "from_file() (turbomoleio.output.states.eigeroutput class method)": [[7, "turbomoleio.output.states.EigerOutput.from_file"]], "from_file() (turbomoleio.output.states.states class method)": [[7, "turbomoleio.output.states.States.from_file"]], "from_parser() (turbomoleio.output.data.aoforcenumericalintegrationdata class method)": [[7, "turbomoleio.output.data.AoforceNumericalIntegrationData.from_parser"]], "from_parser() (turbomoleio.output.data.aoforcerotationaldata class method)": [[7, "turbomoleio.output.data.AoforceRotationalData.from_parser"]], "from_parser() (turbomoleio.output.data.aoforcevibrationaldata class method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.from_parser"]], "from_parser() (turbomoleio.output.data.basedata class method)": [[7, "turbomoleio.output.data.BaseData.from_parser"]], "from_parser() (turbomoleio.output.data.basisdata class method)": [[7, "turbomoleio.output.data.BasisData.from_parser"]], "from_parser() (turbomoleio.output.data.cosmodata class method)": [[7, "turbomoleio.output.data.CosmoData.from_parser"]], "from_parser() (turbomoleio.output.data.dftdata class method)": [[7, "turbomoleio.output.data.DFTData.from_parser"]], "from_parser() (turbomoleio.output.data.dispersioncorrectiondata class method)": [[7, "turbomoleio.output.data.DispersionCorrectionData.from_parser"]], "from_parser() (turbomoleio.output.data.electrostaticmomentsdata class method)": [[7, "turbomoleio.output.data.ElectrostaticMomentsData.from_parser"]], "from_parser() (turbomoleio.output.data.escfdata class method)": [[7, "turbomoleio.output.data.EscfData.from_parser"]], "from_parser() (turbomoleio.output.data.escfiterationdata class method)": [[7, "turbomoleio.output.data.EscfIterationData.from_parser"]], "from_parser() (turbomoleio.output.data.functionaldata class method)": [[7, "turbomoleio.output.data.FunctionalData.from_parser"]], "from_parser() (turbomoleio.output.data.geometrydata class method)": [[7, "turbomoleio.output.data.GeometryData.from_parser"]], "from_parser() (turbomoleio.output.data.integraldata class method)": [[7, "turbomoleio.output.data.IntegralData.from_parser"]], "from_parser() (turbomoleio.output.data.mp2data class method)": [[7, "turbomoleio.output.data.MP2Data.from_parser"]], "from_parser() (turbomoleio.output.data.mp2results class method)": [[7, "turbomoleio.output.data.MP2Results.from_parser"]], "from_parser() (turbomoleio.output.data.periodicitydata class method)": [[7, "turbomoleio.output.data.PeriodicityData.from_parser"]], "from_parser() (turbomoleio.output.data.relaxconvergencedata class method)": [[7, "turbomoleio.output.data.RelaxConvergenceData.from_parser"]], "from_parser() (turbomoleio.output.data.relaxdata class method)": [[7, "turbomoleio.output.data.RelaxData.from_parser"]], "from_parser() (turbomoleio.output.data.relaxgradientsdata class method)": [[7, "turbomoleio.output.data.RelaxGradientsData.from_parser"]], "from_parser() (turbomoleio.output.data.ridata class method)": [[7, "turbomoleio.output.data.RiData.from_parser"]], "from_parser() (turbomoleio.output.data.rundata class method)": [[7, "turbomoleio.output.data.RunData.from_parser"]], "from_parser() (turbomoleio.output.data.scfdata class method)": [[7, "turbomoleio.output.data.ScfData.from_parser"]], "from_parser() (turbomoleio.output.data.scfenergiesdata class method)": [[7, "turbomoleio.output.data.ScfEnergiesData.from_parser"]], "from_parser() (turbomoleio.output.data.scfiterationdata class method)": [[7, "turbomoleio.output.data.ScfIterationData.from_parser"]], "from_parser() (turbomoleio.output.data.smearingdata class method)": [[7, "turbomoleio.output.data.SmearingData.from_parser"]], "from_parser() (turbomoleio.output.data.spindata class method)": [[7, "turbomoleio.output.data.SpinData.from_parser"]], "from_parser() (turbomoleio.output.data.statptdata class method)": [[7, "turbomoleio.output.data.StatptData.from_parser"]], "from_parser() (turbomoleio.output.data.symmetrydata class method)": [[7, "turbomoleio.output.data.SymmetryData.from_parser"]], "from_parser() (turbomoleio.output.data.turbomoledata class method)": [[7, "turbomoleio.output.data.TurbomoleData.from_parser"]], "from_parser() (turbomoleio.output.files.aoforceoutput class method)": [[7, "turbomoleio.output.files.AoforceOutput.from_parser"]], "from_parser() (turbomoleio.output.files.egradoutput class method)": [[7, "turbomoleio.output.files.EgradOutput.from_parser"]], "from_parser() (turbomoleio.output.files.escfonlyoutput class method)": [[7, "turbomoleio.output.files.EscfOnlyOutput.from_parser"]], "from_parser() (turbomoleio.output.files.escfoutput class method)": [[7, "turbomoleio.output.files.EscfOutput.from_parser"]], "from_parser() (turbomoleio.output.files.gradoutput class method)": [[7, "turbomoleio.output.files.GradOutput.from_parser"]], "from_parser() (turbomoleio.output.files.jobexoutput class method)": [[7, "turbomoleio.output.files.JobexOutput.from_parser"]], "from_parser() (turbomoleio.output.files.mp2output class method)": [[7, "turbomoleio.output.files.MP2Output.from_parser"]], "from_parser() (turbomoleio.output.files.relaxoutput class method)": [[7, "turbomoleio.output.files.RelaxOutput.from_parser"]], "from_parser() (turbomoleio.output.files.ricc2output class method)": [[7, "turbomoleio.output.files.Ricc2Output.from_parser"]], "from_parser() (turbomoleio.output.files.scfoutput class method)": [[7, "turbomoleio.output.files.ScfOutput.from_parser"]], "from_parser() (turbomoleio.output.files.statptoutput class method)": [[7, "turbomoleio.output.files.StatptOutput.from_parser"]], "from_string() (turbomoleio.output.data.basedata class method)": [[7, "turbomoleio.output.data.BaseData.from_string"]], "from_string() (turbomoleio.output.states.eigeroutput class method)": [[7, "turbomoleio.output.states.EigerOutput.from_string"]], "gap (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.gap"]], "generate_lowest_filled_states() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.generate_lowest_filled_states"]], "get_eiger_output() (turbomoleio.output.states.eigerrunner method)": [[7, "turbomoleio.output.states.EigerRunner.get_eiger_output"]], "get_freqs_df() (turbomoleio.output.data.aoforcevibrationaldata method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.get_freqs_df"]], "get_mos_energies() (in module turbomoleio.output.states)": [[7, "turbomoleio.output.states.get_mos_energies"]], "get_shells() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.get_shells"]], "get_split_jobex_parsers() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.get_split_jobex_parsers"]], "get_value() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.get_value"]], "gradient() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.gradient"]], "grep_line() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.grep_line"]], "has_fractional_occ (turbomoleio.output.states.state property)": [[7, "turbomoleio.output.states.State.has_fractional_occ"]], "has_fractional_occ (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.has_fractional_occ"]], "has_hole (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.has_hole"]], "header() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.header"]], "homo (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.homo"]], "homo_index (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.homo_index"]], "insert() (turbomoleio.output.states.states method)": [[7, "turbomoleio.output.states.States.insert"]], "integral() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.integral"]], "irrep_indices (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.irrep_indices"]], "irreps (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.irreps"]], "is_uhf (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.is_uhf"]], "is_uhf() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.is_uhf"]], "lumo (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.lumo"]], "lumo_index (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.lumo_index"]], "max_occupation (turbomoleio.output.states.state property)": [[7, "turbomoleio.output.states.State.max_occupation"]], "mp2_data() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.mp2_data"]], "mp2_results() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.mp2_results"]], "n_negative_freqs() (turbomoleio.output.data.aoforcevibrationaldata method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.n_negative_freqs"]], "n_positive_freqs() (turbomoleio.output.data.aoforcevibrationaldata method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.n_positive_freqs"]], "n_states (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.n_states"]], "n_zero_freqs() (turbomoleio.output.data.aoforcevibrationaldata method)": [[7, "turbomoleio.output.data.AoforceVibrationalData.n_zero_freqs"]], "occupations (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.occupations"]], "periodicity_data() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.periodicity_data"]], "plot_energies() (turbomoleio.output.data.scfiterationdata method)": [[7, "turbomoleio.output.data.ScfIterationData.plot_energies"]], "pre_escf_run() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.pre_escf_run"]], "pre_scf_run() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.pre_scf_run"]], "rdgrad_memory() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.rdgrad_memory"]], "relax_conv_info() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.relax_conv_info"]], "relax_gradient_values() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.relax_gradient_values"]], "relax_info() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.relax_info"]], "rij_info() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.rij_info"]], "riper_scf_energies() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.riper_scf_energies"]], "run() (turbomoleio.output.states.eigerrunner method)": [[7, "turbomoleio.output.states.EigerRunner.run"]], "s2() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.s2"]], "scf_energies() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.scf_energies"]], "scf_iterations() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.scf_iterations"]], "spins (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.spins"]], "statpt_info() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.statpt_info"]], "string (turbomoleio.output.parser.parser property)": [[7, "turbomoleio.output.parser.Parser.string"]], "symmetry() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.symmetry"]], "timings() (turbomoleio.output.parser.parser method)": [[7, "turbomoleio.output.parser.Parser.timings"]], "to_file() (turbomoleio.output.states.eigerrunner method)": [[7, "turbomoleio.output.states.EigerRunner.to_file"]], "total_electrons (turbomoleio.output.states.states property)": [[7, "turbomoleio.output.states.States.total_electrons"]], "turbomoleio.output": [[7, "module-turbomoleio.output"]], "turbomoleio.output.data": [[7, "module-turbomoleio.output.data"]], "turbomoleio.output.files": [[7, "module-turbomoleio.output.files"]], "turbomoleio.output.parser": [[7, "module-turbomoleio.output.parser"]], "turbomoleio.output.states": [[7, "module-turbomoleio.output.states"]], "testfiles (class in turbomoleio.output.tests.test_files)": [[8, "turbomoleio.output.tests.test_files.TestFiles"]], "testfunctions (class in turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.TestFunctions"]], "testparser (class in turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.TestParser"]], "cls_dict_path() (in module turbomoleio.output.tests.test_files)": [[8, "turbomoleio.output.tests.test_files.cls_dict_path"]], "generate_files() (in module turbomoleio.output.tests.test_files)": [[8, "turbomoleio.output.tests.test_files.generate_files"]], "generate_files() (in module turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.generate_files"]], "method() (in module turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.method"]], "parser_and_dict() (in module turbomoleio.output.tests.test_parser)": [[8, "turbomoleio.output.tests.test_parser.parser_and_dict"]], "test_aoforcevibrationaldata() (in module turbomoleio.output.tests.test_data)": [[8, "turbomoleio.output.tests.test_data.test_AoforceVibrationalData"]], "test_scfiterationdata() (in module turbomoleio.output.tests.test_data)": [[8, "turbomoleio.output.tests.test_data.test_ScfIterationData"]], "test_closed() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_closed"]], "test_convert_float() (turbomoleio.output.tests.test_parser.testfunctions method)": [[8, "turbomoleio.output.tests.test_parser.TestFunctions.test_convert_float"]], "test_convert_int() (turbomoleio.output.tests.test_parser.testfunctions method)": [[8, "turbomoleio.output.tests.test_parser.TestFunctions.test_convert_int"]], "test_convert_time_string() (turbomoleio.output.tests.test_parser.testfunctions method)": [[8, "turbomoleio.output.tests.test_parser.TestFunctions.test_convert_time_string"]], "test_eiger_runner() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_eiger_runner"]], "test_error_homo() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_error_homo"]], "test_fail_all_done_check() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_fail_all_done_check"]], "test_get_split_jobex_parsers() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_get_split_jobex_parsers"]], "test_get_value() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_get_value"]], "test_grep_line() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_grep_line"]], "test_hole() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_hole"]], "test_no_empty_states() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_no_empty_states"]], "test_parsing_failures() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_parsing_failures"]], "test_properties() (turbomoleio.output.tests.test_files.testfiles method)": [[8, "turbomoleio.output.tests.test_files.TestFiles.test_properties"]], "test_properties() (turbomoleio.output.tests.test_parser.testparser method)": [[8, "turbomoleio.output.tests.test_parser.TestParser.test_properties"]], "test_state() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_state"]], "test_str() (in module turbomoleio.output.tests.test_data)": [[8, "turbomoleio.output.tests.test_data.test_str"]], "test_uhf() (in module turbomoleio.output.tests.test_states)": [[8, "turbomoleio.output.tests.test_states.test_uhf"]], "turbomoleio.output.tests": [[8, "module-turbomoleio.output.tests"]], "turbomoleio.output.tests.test_data": [[8, "module-turbomoleio.output.tests.test_data"]], "turbomoleio.output.tests.test_files": [[8, "module-turbomoleio.output.tests.test_files"]], "turbomoleio.output.tests.test_parser": [[8, "module-turbomoleio.output.tests.test_parser"]], "turbomoleio.output.tests.test_states": [[8, "module-turbomoleio.output.tests.test_states"]], "itestconfig (class in turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.ItestConfig"]], "itesterror": [[9, "turbomoleio.testfiles.utils.ItestError"]], "assert_msonable() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.assert_MSONable"]], "assert_almost_equal() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.assert_almost_equal"]], "compare_differences() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.compare_differences"]], "define_timeout (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.define_timeout"]], "delete_tmp_dir (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.delete_tmp_dir"]], "dryrun (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.dryrun"]], "dryrun_fpath (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.dryrun_fpath"]], "dryrun_use_ref_control (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.dryrun_use_ref_control"]], "generate_control_for_test() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.generate_control_for_test"]], "generate_ref (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.generate_ref"]], "generate_reference_out_parser_files() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.generate_reference_out_parser_files"]], "generate_reference_output() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.generate_reference_output"]], "get_control_filepath() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.get_control_filepath"]], "get_control_integration() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.get_control_integration"]], "get_sp() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.get_sp"]], "get_tfp() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.get_tfp"]], "gisnan() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.gisnan"]], "has_matplotlib() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.has_matplotlib"]], "run_itest() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.run_itest"]], "temp_dir() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.temp_dir"]], "tol (turbomoleio.testfiles.utils.itestconfig attribute)": [[9, "turbomoleio.testfiles.utils.ItestConfig.tol"]], "touch_file() (in module turbomoleio.testfiles.utils)": [[9, "turbomoleio.testfiles.utils.touch_file"]], "turbomoleio.testfiles": [[9, "module-turbomoleio.testfiles"]], "turbomoleio.testfiles.utils": [[9, "module-turbomoleio.testfiles.utils"]]}}) \ No newline at end of file diff --git a/docs_rst/index.rst b/docs_rst/index.rst index 85a6ef5..714e8d9 100644 --- a/docs_rst/index.rst +++ b/docs_rst/index.rst @@ -27,14 +27,15 @@ turbomoleio turbomoleio is a python library containing a set of tools for the generation of inputs and parsing of outputs for `TURBOMOLE `_, based on the open-source `pymatgen `_ library. turbomoleio is compatible with python version 3.8 and higher. The current version of turbomoleio is -compatible with TURBOMOLE version 7.5. Care is taken to provide backward compatibility for parsing of output +compatible with TURBOMOLE version 7.6. Care is taken to provide backward compatibility for parsing of output files generated with versions of TURBOMOLE down to 7.3. Full compatibility (i.e. input generation using define) -is only tested for TURBOMOLE version 7.5. The following table summarizes the compatibility (full, including input +is only tested for TURBOMOLE version 7.6. The following table summarizes the compatibility (full, including input generation using define) between TURBOMOLE and turbomoleio versions: ======================= ======================= TURBOMOLE version(s) turbomoleio version(s) ======================= ======================= +7.6 series 1.4.x series 7.5 series 1.3.x series 7.4 series 1.2.x series 7.3 series 1.0.x and 1.1.x series diff --git a/pyproject.toml b/pyproject.toml index 94e2e45..96b6f4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "turbomoleio" -version = "1.3.1" +version = "1.4.0" description = """\ Turbomoleio is a python package containing a set of tools \ for the generation of inputs and parsing of outputs for \ diff --git a/turbomoleio/__version__.py b/turbomoleio/__version__.py index 466bb7f..ae5e5f4 100644 --- a/turbomoleio/__version__.py +++ b/turbomoleio/__version__.py @@ -35,4 +35,4 @@ open-source `pymatgen `_ library. Turbomoleio is compatible with python version 3.8+. Full documentation can be found on ``_. """ -__version__ = "1.3.1" +__version__ = "1.4.0" diff --git a/turbomoleio/output/parser.py b/turbomoleio/output/parser.py index d10d5a5..0307971 100644 --- a/turbomoleio/output/parser.py +++ b/turbomoleio/output/parser.py @@ -409,12 +409,15 @@ def header(self): # In this case turbomole version and build will be set to None. # For example it may be: # escf (node001) : TURBOMOLE rev. compiled 1 Jul 2018 at 20:38:15 - r_version = r"V([\d\.]+\d)\s+.*" + # + # Note: TURBOMOLE 7.6 uses the notation 7-6. Catch it and convert to 7.6 + r_version = r"V([\d\.-]+\d)\s+.*" r_build = r"V[\d\.]+\d\s+\((.*)\)" match_version = re.search(r_version, match.group(3).strip()) match_build = re.search(r_build, match.group(3).strip()) if match_version: tm_version = match_version.group(1).strip() + tm_version = tm_version.replace("-", ".") else: tm_version = None if match_build: diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/aoforce.log b/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/aoforce.log new file mode 100644 index 0000000..97ded4a --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/aoforce.log @@ -0,0 +1,844 @@ + + force (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:18:05.960 + + + + T U R B O M O L E + + a o f o r c e - program + + using direct algorithms for + + SCF level calculations of + * harmonic force constants + * hyperpolarizabilities + * IR and RAMAN intensities + * VCD intensities + + DFT level calculations of + * harmonic force constants + * IR intensities + + Stephan Boecker, Peter Deglmann, Filipp Furche and Marco Haeser + Quantum Chemistry Group + Universitaet Karlsruhe + Germany + + + + + + References : + + RI-J implementation: + Peter Deglmann, Klaus May, Filipp Furche, Reinhart Ahlrichs + Chem. Phys. Lett. 384:103 (2004) + + Efficiency, technical details: + Peter Deglmann, Filipp Furche, Reinhart Ahlrichs + Chem. Phys. Lett. 362:511 (2002) + + Search of lowest eigenvalues by iterative diagonalization: + Peter Deglmann, Filipp Furche + J. Chem. Phys. 117:9535 (2002) + + Vibrational circular dichroism implementation: + Kevin Reiter, Michael Kuehn, Florian Weigend + J. Chem. Phys. 146:054102 (2017) + + + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.05814498 -3.50738391 0.00000000 o 8.000 0 + 2.43488579 0.35436813 0.00000000 c 6.000 0 + -2.48030013 0.26702469 0.00000000 c 6.000 0 + -0.00509977 -1.20231423 0.00000000 c 6.000 0 + 2.11408643 2.42830913 0.00000000 h 1.000 0 + -4.10640229 -1.05476626 0.00000000 h 1.000 0 + 3.57887083 -0.16668276 1.68562205 h 1.000 0 + 3.57887083 -0.16668276 -1.68562205 h 1.000 0 + -2.58652834 1.52406399 1.68701865 h 1.000 0 + -2.58652834 1.52406399 -1.68701865 h 1.000 0 + + center of nuclear mass : 0.00543831 -1.01535818 0.00000000 + center of nuclear charge: 0.00482639 -0.85800920 0.00000000 + + ************************************************************************* + dscf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + c 3 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 6 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 10 120 68 + --------------------------------------------------------------------------- + + total number of primitive shells : 28 + total number of contracted shells : 36 + total number of cartesian basis functions : 72 + total number of SCF-basis functions : 68 + + + symmetry group of the molecule : cs + + the group has the following generators : + c1(z) + mirror plane sigma(xy) + + 2 symmetry operations found + + there are 2 real representations : a' a" + + maximum number of shells which are related by symmetry : 2 + + + determining totally symmetric integral contributions + - equivalent to irreducible tensor elements - + which can be formed within each triple of representations : + + representation triple contributions + + a' a' a' 1 + a' a" a" 1 + a" a' a" 1 + a" a" a' 1 + + mo occupation : + irrep mo's occupied + a' 48 13 + a" 20 3 + + number of basis functions : 68 + number of occupied orbitals : 16 + + MOs are in ASCII format ! + + + reading orbital data $scfmo from file mos + orbital characterization : scfconv=8 + time elapsed for calculating density matrices : 0.001 sec + + number of non-frozen orbitals : 68 + number of non-frozen occupied orbitals : 16 + Blocking parameters + shells: + index start shell last shell start bf last bf #bf + 1 1 36 1 72 72 + size of I/O Block in Byte: 1244160 + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 8 + partition function : becke + partition sharpness : 3 + + + Derivatives of quadrature weights will be included + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 24534 + Ordering of quadrature gridpoints disabled. + + + + + OCCUPIED-OCCUPIED TENSOR SPACES : + + IRREP tensor space dimension number of roots + + a' 178 15 + a" 78 9 + + OCCUPIED-VIRTUAL TENSOR SPACES : + + IRREP tensor space dimension number of roots + + a' 506 15 + a" 326 9 + + + + + CONSTRUCTING integral bounds + + setting up bound for integral derivative estimation + + increment for numerical differentiation : 0.00050000 + + machine precision: 2.220446049250313E-016 + + integral neglect threshold : 0.10E-09 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + + + PREPARING NUMERICAL INTEGRATION + + Remaining core memory for DFT = 497 MB + + Memory needed per atom = 61 KiB + + i. e. 10 atoms per loop + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 32.00001039751107 + + + + + CONSTRUCTING first deriv. of -> Dip. deriv. + dipole integral derivatives will be neglected if + expon. factor <0.694444E-12 + ...terminated. cpu: 0.00 wall: 0.00 + + + + + CONSTRUCTING first deriv. of + -> RHS + second deriv. of -> Hessian + -> Hessian + nucl. rep. -> Hessian + integrals are neglected if expon. factor < 6.944444444444444E-014 + ...terminated. cpu: 0.04 wall: 0.06 + + + + + CONSTRUCTING second deriv. of 2e energy -> Hessian + treating Coulomb (and exchange) contribution + integrals will be neglected if total contribution < 6.944444444444444E-010 + ...terminated. cpu: 1.78 wall: 1.78 + treating exchange-correlation contribution + ...terminated. cpu: 2.06 wall: 2.06 + + + + + CONSTRUCTING S(i,j)xi + ...terminated. cpu: 0.00 wall: 0.02 + + + + + CONSTRUCTING *S(i,j)xi -> Dip. deriv. + ...terminated. cpu: 0.00 wall: 0.01 + + + + + CONSTRUCTING epsilon(i)*S(i,j)xi*S(i,j)chi -> Hessian + ...terminated. cpu: 0.00 wall: 0.01 + + + + + CONSTRUCTING G(a,i)[S(k,l)xi] -> RHS + G(i,j)[S(k,l)xi]*S(i,j)chi -> Hessian + + Maximum core memory set to 500 MB + This corresponds to 12082 vectors in CAO basis + ...terminated. cpu: 0.99 wall: 1.11 + + + + + CONSTRUCTING G(mu,nu)[D(kap,lam)]xi + + Maximum core memory set to 500 MB + Atoms treated simultaneously : 10 + max of dfo 6.84546970462346 + ...terminated. cpu: 1.58 wall: 1.62 + + + + + CONSTRUCTING F(a,i)xi -> RHS + F(i,j)xi*S(i,j)chi -> Hessian + + Maximum core memory set to 500 MB + This corresponds to 20911 vectors in CAO basis + ...terminated. cpu: 0.00 wall: 0.03 + + + + + CONSTRUCTING epsilon(i)*S(a,i)xi -> RHS + ...terminated. cpu: 0.00 wall: 0.03 + + + + + SOLVING CPHF equations + + Residuum convergence criterium : 1.000000000000000E-005 + + Maximum number of Davidson iterations set to 25 + + logfile cphf_a' will be constructed + + logfile cphf_a" will be constructed + Switching to small grid + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 6727 + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 32.00124448156419 + + + + + Nonorthonormal Krylov Space Iteration + + + total number of roots to be determined: 24 + + + maximum core memory set to 500 MB, + corresponding to 12082 vectors in CAO basis + + + maximum number of simultaneously treated vectors (including degeneracy): 24 + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 1 a' 0 6.477864201546545D-02 + a" 0 2.101071400167658D-02 + + 2 a' 0 3.108084414748305D-03 + a" 0 2.142588191202605D-03 + + 3 a' 0 1.493542249240670D-04 + a" 0 1.131083813417664D-04 + + 4 a' 15 3.352126044199397D-06 + a" 9 1.725170449884324D-06 + + + converged! + + Switching to fine grid + preparing numerical DFT integration .... + Overall gridpoints after grid construction = 24534 + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 32.00001039751096 + + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 5 a' 0 7.333438424219129D-05 + a" 1 3.947239674627336D-05 + + + NOTE: Residual norms are larger than 1.00D-05 due to mgrid option! + + ...terminated. cpu: 2.91 wall: 4.14 + + + + + CONSTRUCTING *U(a,i)xi -> Dip. deriv. + ...terminated. cpu: 0.00 wall: 0.03 + + + + + CONSTRUCTING RHS(a,i)xi*U(a,i)chi -> Hessian + ...terminated. cpu: 0.00 wall: 0.02 + + + + + + ----------------------- + permanent dipole moment + ----------------------- + + x y z + electronic part : -0.1320527169 28.4792736263 0.0000000000 + nuclear part : 0.1544443291 -27.4562944460 0.0000000000 + total : 0.0223916123 1.0229791802 0.0000000000 + + with reference to the point : 0.0000000 0.0000000 0.0000000 + (given in atomic units) + | dipole | : 2.6007961843 debye + + *** dipole moment & cartesian dipole gradients written onto + $dipole, $dipgrad, file= *** + + ----------------------------------- + rotational and vibrational analysis + ----------------------------------- + + + ============================================================== + ATOMIC WEIGHTS (average over the natural occurance of isotops) + ============================================================== + ('*' denotes special isotop !) + 1 o 15.99940 + 2 c 12.01115 + 3 c 12.01115 + 4 c 12.01115 + 5 h 1.00797 + 6 h 1.00797 + 7 h 1.00797 + 8 h 1.00797 + 9 h 1.00797 + 10 h 1.00797 + + ------------------------------------------------- + CARTESIAN FORCE CONSTANT MATRIX (hartree/bohr**2) + (translational & rotational space projected out) + ------------------------------------------------- + + ATOM 1 o 2 c + dx dy dz dx dy dz + 1 o dx 0.0913170 + dy -0.0209348 0.8146043 + dz 0.0000000 0.0000000 0.0233904 + 2 c dx 0.0091027-0.0236357 0.0000000 0.4557639 + dy -0.0377307-0.0460284 0.0000000-0.0514885 0.5439242 + dz 0.0000000 0.0000000 0.0144987 0.0000000 0.0000000 0.5005750 + 3 c dx 0.0065161 0.0227628 0.0000000-0.0228034 0.0086204 0.0000000 + dy 0.0411011-0.0456585 0.0000000-0.0111798 0.0098318 0.0000000 + dz 0.0000000 0.0000000 0.0266572 0.0000000 0.0000000 0.0162371 + 4 c dx -0.1041944 0.0192110 0.0000000-0.1574393-0.0358888 0.0000000 + dy 0.0166642-0.7194296 0.0000000-0.0231301-0.0924610 0.0000000 + dz 0.0000000 0.0000000-0.0667069 0.0000000 0.0000000-0.0778951 + 5 h dx -0.0066643-0.0063504 0.0000000-0.0539389 0.0441601 0.0000000 + dy -0.0059735-0.0023413 0.0000000 0.0401411-0.2957971 0.0000000 + dz 0.0000000 0.0000000 0.0030133 0.0000000 0.0000000-0.0449312 + 6 h dx 0.0055322 0.0002087 0.0000000-0.0029683 0.0038922 0.0000000 + dy -0.0015039 0.0013546 0.0000000 0.0021558-0.0013958 0.0000000 + dz 0.0000000 0.0000000-0.0013635 0.0000000 0.0000000 0.0031039 + 7 h dx 0.0026664 0.0016599 0.0027691-0.1135505 0.0348737-0.1174381 + dy -0.0000239-0.0006543 0.0023441 0.0339304-0.0595703 0.0521337 + dz 0.0000204-0.0006834 0.0012572-0.1137919 0.0526290-0.2061868 + 8 h dx 0.0026664 0.0016599-0.0027691-0.1135505 0.0348737 0.1174381 + dy -0.0000239-0.0006543-0.0023441 0.0339304-0.0595703-0.0521337 + dz -0.0000204 0.0006834 0.0012572 0.1137919-0.0526290-0.2061868 + 9 h dx -0.0034711 0.0027093-0.0036452-0.0003078-0.0006560-0.0029263 + dy 0.0042126-0.0005962 0.0023117-0.0003618 0.0005335 0.0018734 + dz 0.0002208 0.0013222-0.0010018 0.0002436-0.0005195 0.0003925 + 10 h dx -0.0034711 0.0027093 0.0036452-0.0003078-0.0006560 0.0029263 + dy 0.0042126-0.0005962-0.0023117-0.0003618 0.0005335-0.0018734 + dz -0.0002208-0.0013222-0.0010018-0.0002436 0.0005195 0.0003925 + + ATOM 3 c 4 c + dx dy dz dx dy dz + 3 c dx 0.4840557 + dy 0.0668786 0.5306872 + dz 0.0000000 0.0000000 0.4931068 + 4 c dx -0.1712406 0.0253591 0.0000000 0.4700503 + dy 0.0272593-0.0876386 0.0000000-0.0162746 0.9184458 + dz 0.0000000 0.0000000-0.0851780 0.0000000 0.0000000 0.2288788 + 5 h dx -0.0003227 0.0011608 0.0000000 0.0122792-0.0247092 0.0000000 + dy 0.0006916 0.0014233 0.0000000 0.0098541-0.0124002 0.0000000 + dz 0.0000000 0.0000000 0.0003461 0.0000000 0.0000000-0.0041548 + 6 h dx -0.2006438-0.1282381 0.0000000-0.0226061-0.0222595 0.0000000 + dy -0.1325824-0.1531023 0.0000000 0.0143058 0.0113448 0.0000000 + dz 0.0000000 0.0000000-0.0465157 0.0000000 0.0000000-0.0010137 + 7 h dx -0.0023107-0.0028874 0.0022828-0.0170527 0.0068515-0.0223042 + dy -0.0006888-0.0002884 0.0014497-0.0070282 0.0037375-0.0157083 + dz 0.0002719-0.0004800-0.0004569 0.0023968 0.0004542 0.0009674 + 8 h dx -0.0023107-0.0028874-0.0022828-0.0170527 0.0068515 0.0223042 + dy -0.0006888-0.0002884-0.0014497-0.0070282 0.0037375 0.0157083 + dz -0.0002719 0.0004800-0.0004569-0.0023968-0.0004542 0.0009674 + 9 h dx -0.0454700 0.0053466 0.0129010 0.0036281 0.0143734 0.0247054 + dy 0.0038736-0.1274830-0.1256112-0.0012551-0.0126681-0.0123443 + dz 0.0099487-0.1221293-0.2018698-0.0013370 0.0011797 0.0020674 + 10 h dx -0.0454700 0.0053466-0.0129010 0.0036281 0.0143734-0.0247054 + dy 0.0038736-0.1274830 0.1256112-0.0012551-0.0126681 0.0123443 + dz -0.0099487 0.1221293-0.2018698 0.0013370-0.0011797 0.0020674 + + ATOM 5 h 6 h + dx dy dz dx dy dz + 5 h dx 0.0539948 + dy -0.0440257 0.3166285 + dz 0.0000000 0.0000000 0.0420425 + 6 h dx 0.0006959 0.0003399 0.0000000 0.2158177 + dy 0.0000021 0.0001263 0.0000000 0.1393128 0.1583163 + dz 0.0000000 0.0000000-0.0000904 0.0000000 0.0000000 0.0426306 + 7 h dx -0.0023523-0.0001010-0.0020402-0.0009894 0.0003609 0.0005794 + dy 0.0149379-0.0040357 0.0236514-0.0001596 0.0002151 0.0000702 + dz 0.0023659-0.0010125 0.0019808 0.0000811 0.0000223-0.0001426 + 8 h dx -0.0023523-0.0001010 0.0020402-0.0009894 0.0003609-0.0005794 + dy 0.0149379-0.0040357-0.0236514-0.0001596 0.0002151-0.0000702 + dz -0.0023659 0.0010125 0.0019808-0.0000811-0.0000223-0.0001426 + 9 h dx -0.0006697-0.0004127 0.0002158 0.0030756-0.0112060-0.0191188 + dy -0.0000567 0.0002160 0.0000310 0.0035316-0.0085371-0.0134284 + dz 0.0001632 0.0003657-0.0000935-0.0003347 0.0023959 0.0017670 + 10 h dx -0.0006697-0.0004127-0.0002158 0.0030756-0.0112060 0.0191188 + dy -0.0000567 0.0002160-0.0000310 0.0035316-0.0085371 0.0134284 + dz -0.0001632-0.0003657-0.0000935 0.0003347-0.0023959 0.0017670 + + ATOM 7 h 8 h + dx dy dz dx dy dz + 7 h dx 0.1233029 + dy -0.0361874 0.0591537 + dz 0.1222934-0.0573306 0.2197784 + 8 h dx 0.0097529-0.0046210-0.0138153 0.1233029 + dy -0.0046210 0.0014931 0.0063772-0.0361874 0.0591537 + dz 0.0138153-0.0063772-0.0171354-0.1222934 0.0573306 0.2197784 + 9 h dx -0.0004521-0.0003514 0.0000589 0.0009855 0.0001920-0.0001187 + dy 0.0003572-0.0000387-0.0000725-0.0003063-0.0000120-0.0000964 + dz 0.0000229 0.0000223-0.0000054-0.0000198 0.0002554-0.0000567 + 10 h dx 0.0009855 0.0001920 0.0001187-0.0004521-0.0003514-0.0000589 + dy -0.0003063-0.0000120 0.0000964 0.0003572-0.0000387 0.0000725 + dz 0.0000198-0.0002554-0.0000567-0.0000229-0.0000223-0.0000054 + + ATOM 9 h 10 h + dx dy dz dx dy dz + 9 h dx 0.0429582 + dy -0.0083447 0.1373388 + dz -0.0104899 0.1322222 0.2165091 + 10 h dx -0.0002766-0.0016504 0.0015822 0.0429582 + dy -0.0016504 0.0112469-0.0151146-0.0083447 0.1373388 + dz -0.0015822 0.0151146-0.0177087 0.0104899-0.1322222 0.2165091 + + + *** projected hessian written onto $hessian (projected), file= *** + + dipole moment in principle axis system (a.u.) : + 0.0205132454 1.0230185698 0.0000000000 + norm : 1.02322421172582 + + rotational constants b for rotations around axis of inertia + and optical intensities for (1 <-- 0) transition + + b : 0.3345568942 0.2768703230 0.1607738674 (cm**(-1)) + b : 10029.7634 8300.3635 4819.8793 (MHz) + int. : 0.0004207932 1.0465669942 0.0000000000 (a.u.) + + x : 0.9999983143 0.0018361363 0.0000000000 + y : -0.0018361363 0.9999983143 0.0000000000 + z : 0.0000000000 0.0000000000 1.0000000000 + + *** normal modes written onto $vibrational normal modes, file= *** + + Keyword $vibrational reduced masses missing in file + + + *** vibrational spectroscopic data written onto$vibrational spectrum + file= *** + + --------------------------------------------------- + NORMAL MODES and VIBRATIONAL FREQUENCIES (cm**(-1)) + --------------------------------------------------- + + imaginary wave numbers indicate a negative curvature of the energy surface. + zero frequency modes have no physical meaning except being generators of + translations and rotations. each vibrational normal mode - given in terms of + cartesian displacement vectors of all atoms - has been normalized to unity. + to obtain mass-weigthed normal coordinates in a.u. divide the tabulated + modes by sqrt(reduced mass * 1822.88853). + band intensities or cross sections refer to independent non-degenerate normal + modes, that is, the intensities of degenerate modes have yet to be added. + dDIP/dQ is the normal mode derivative of the dipole moment. + + WARNING: values of IR intensities are questionable for saddle point structures + + + mode 1 2 3 4 5 6 + + frequency i113.75 0.00 0.00 0.00 0.00 0.00 + + symmetry a" + + IR YES - - - - - +|dDIP/dQ| (a.u.) 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 +intensity (km/mol) 0.00 0.00 0.00 0.00 0.00 0.00 +intensity ( % ) 0.00 0.00 0.00 0.00 0.00 0.00 + + RAMAN YES - - - - - + + 1 o x 0.00000 0.00267 0.35621 0.08763 -0.03439 0.11162 + y 0.00000 -0.00381 0.03777 -0.12501 0.20845 0.06509 + z 0.04920 -0.10381 -0.02338 0.17167 -0.08436 0.02308 + 2 c x 0.00000 0.00701 -0.01248 0.23021 0.10132 0.14993 + y -0.00000 -0.00648 0.26468 -0.21276 0.12492 0.04151 + z -0.00463 0.05039 0.11331 0.19089 0.21333 -0.33119 + 3 c x 0.00000 0.00691 -0.00414 0.22699 0.09825 0.14906 + y 0.00000 -0.00095 -0.20458 -0.03128 0.29765 0.09027 + z -0.04844 0.38141 -0.02079 0.00400 -0.05039 0.04812 + 4 c x 0.00000 0.00526 0.13614 0.17274 0.04661 0.13449 + y 0.00000 -0.00374 0.03173 -0.12267 0.21067 0.06571 + z 0.01476 0.09020 0.01828 0.12631 0.01499 -0.07520 + 5 h x 0.00000 0.00934 -0.21048 0.30679 0.17420 0.17050 + y -0.00000 -0.00612 0.23406 -0.20091 0.13619 0.04469 + z 0.49283 0.24310 0.14368 0.13995 0.28877 -0.39945 + 6 h x 0.00000 0.00543 0.12205 0.17819 0.05180 0.13595 + y -0.00000 0.00088 -0.35983 0.02876 0.35480 0.10639 + z -0.17600 0.38454 -0.08947 -0.03374 -0.19524 0.23143 + 7 h x 0.28911 0.12241 -0.00816 0.14633 -0.00610 0.27350 + y -0.39613 -0.14646 0.34219 -0.22360 0.00962 0.10557 + z -0.32814 -0.07120 0.13434 0.24447 0.25059 -0.39525 + 8 h x -0.28911 -0.10956 0.08269 0.27562 0.17212 0.01602 + y 0.39613 0.13092 0.40561 -0.28640 0.15982 -0.04523 + z -0.32814 -0.07120 0.13434 0.24447 0.25059 -0.39525 + 9 h x -0.07583 0.12441 -0.16961 0.20870 0.05325 0.29038 + y -0.08110 -0.13964 -0.24646 0.00407 0.22623 0.16678 + z 0.00756 0.49214 0.00000 -0.02349 -0.00000 0.00000 + 10 h x 0.07583 -0.10775 -0.07869 0.33810 0.23161 0.03269 + y 0.08110 0.13797 -0.18298 -0.05879 0.37655 0.01586 + z 0.00756 0.49214 0.00000 -0.02349 0.00000 0.00000 + +reduced mass(g/mol) 1.073 2.890 4.538 4.529 4.193 3.408 + + + mode 7 8 9 10 11 12 + + frequency 0.00 157.28 372.62 482.93 510.25 764.50 + + symmetry a" a' a" a' a' + + IR - YES YES YES YES YES +|dDIP/dQ| (a.u.) 0.0000 0.0006 0.0010 0.0002 0.0026 0.0011 +intensity (km/mol) 0.00 0.56 1.62 0.09 11.66 2.13 +intensity ( % ) 0.00 0.35 1.01 0.06 7.28 1.33 + + RAMAN - YES YES YES YES YES + + 1 o x -0.03882 0.00000 -0.00202 -0.00000 -0.30338 0.01637 + y 0.11693 -0.00000 -0.13173 -0.00000 -0.01027 -0.15249 + z 0.54065 -0.04194 0.00000 -0.10981 0.00000 -0.00000 + 2 c x -0.10279 -0.00000 -0.15353 -0.00000 0.12972 0.25588 + y 0.15630 0.00000 0.10217 0.00000 0.15827 0.09816 + z 0.00710 0.03831 -0.00000 -0.02475 0.00000 0.00000 + 3 c x -0.10135 0.00000 0.15130 0.00000 0.11330 -0.26482 + y 0.07488 -0.00000 0.09522 -0.00000 -0.15172 0.12899 + z 0.15000 0.00319 -0.00000 -0.00355 0.00000 -0.00000 + 4 c x -0.07700 0.00000 0.00089 0.00000 0.13112 -0.00110 + y 0.11588 -0.00000 -0.12991 -0.00000 0.00249 -0.13027 + z 0.26205 0.01891 -0.00000 0.27488 -0.00000 0.00000 + 5 h x -0.13715 -0.00000 -0.48067 -0.00000 -0.21290 0.02868 + y 0.15099 -0.00000 0.05041 0.00000 0.10527 0.06975 + z -0.23645 0.17736 0.00000 -0.27404 0.00000 -0.00000 + 6 h x -0.07945 0.00000 -0.08593 0.00000 0.34096 -0.42225 + y 0.04794 -0.00000 0.38771 -0.00000 -0.42998 0.31167 + z 0.35448 0.48883 -0.00000 -0.31850 0.00000 0.00000 + 7 h x -0.04880 0.05396 -0.07215 0.29513 0.21211 0.32881 + y 0.38022 -0.10868 0.29857 0.24012 0.37329 0.29587 + z 0.03967 -0.03246 0.00552 -0.15284 0.01161 0.01636 + 8 h x -0.13952 -0.05396 -0.07215 -0.29513 0.21211 0.32881 + y -0.02972 0.10868 0.29857 -0.24012 0.37329 0.29587 + z 0.03967 -0.03246 -0.00552 -0.15284 -0.01161 -0.01636 + 9 h x -0.07677 0.18565 0.37944 -0.39216 -0.09751 -0.20217 + y 0.27826 0.45313 0.12585 0.15376 -0.18332 0.14639 + z -0.00000 -0.32776 -0.00784 -0.14852 0.01018 -0.00576 + 10 h x -0.16757 -0.18565 0.37944 0.39216 -0.09751 -0.20217 + y -0.13202 -0.45313 0.12585 -0.15376 -0.18332 0.14639 + z 0.00000 -0.32776 0.00784 -0.14852 -0.01018 0.00576 + +reduced mass(g/mol) 7.394 1.055 2.180 2.027 3.434 3.328 + + + mode 13 14 15 16 17 18 + + frequency 847.27 883.74 1033.97 1070.10 1191.20 1325.01 + + symmetry a" a' a' a" a' a' + + IR YES YES YES YES YES YES +|dDIP/dQ| (a.u.) 0.0004 0.0025 0.0009 0.0022 0.0073 0.0028 +intensity (km/mol) 0.29 10.77 1.31 8.93 93.89 14.38 +intensity ( % ) 0.18 6.73 0.82 5.58 58.65 8.98 + + RAMAN YES YES YES YES YES YES + + 1 o x 0.00000 -0.02543 0.00231 0.00000 -0.05861 -0.00439 + y -0.00000 0.00344 0.10928 0.00000 0.00441 -0.00481 + z 0.00887 -0.00000 0.00000 -0.03972 0.00000 0.00000 + 2 c x 0.00000 0.04893 0.05685 0.00000 -0.09528 0.07082 + y 0.00000 0.13177 -0.13378 -0.00000 0.03471 0.03751 + z -0.09871 -0.00000 0.00000 -0.12919 -0.00000 -0.00000 + 3 c x -0.00000 0.00883 -0.04740 -0.00000 -0.10140 -0.09921 + y 0.00000 -0.13705 -0.11294 -0.00000 -0.05875 0.06613 + z 0.09053 0.00000 0.00000 -0.13327 -0.00000 -0.00000 + 4 c x 0.00000 -0.10674 -0.01233 -0.00000 0.35947 0.03222 + y -0.00000 -0.00362 0.04506 0.00000 0.01218 -0.00465 + z -0.00868 0.00000 -0.00000 0.23053 0.00000 -0.00000 + 5 h x 0.00000 0.56453 -0.52142 -0.00000 -0.05156 -0.29571 + y 0.00000 0.21566 -0.21973 -0.00000 0.02043 -0.02474 + z 0.25154 0.00000 -0.00000 0.30264 -0.00000 0.00000 + 6 h x -0.00000 -0.31827 -0.35028 -0.00000 -0.48655 0.18936 + y 0.00000 0.27153 0.26893 0.00000 0.41366 -0.28673 + z -0.22614 0.00000 -0.00000 0.29357 0.00000 0.00000 + 7 h x -0.40951 -0.03713 0.12207 -0.38597 -0.18980 -0.30023 + y -0.21673 -0.17876 0.30561 -0.13219 -0.35118 -0.18173 + z 0.12035 -0.03584 0.08598 0.10483 -0.05827 0.17634 + 8 h x 0.40951 -0.03713 0.12207 0.38597 -0.18980 -0.30023 + y 0.21673 -0.17876 0.30561 0.13219 -0.35118 -0.18173 + z 0.12035 0.03584 -0.08598 0.10483 0.05827 -0.17634 + 9 h x -0.38405 0.40768 0.31262 0.32467 -0.04587 0.36539 + y 0.21559 -0.03918 0.00395 -0.27049 0.16973 -0.21413 + z -0.10303 -0.04678 -0.06195 0.10253 -0.14986 0.22901 + 10 h x 0.38405 0.40768 0.31262 -0.32467 -0.04587 0.36539 + y -0.21559 -0.03918 0.00395 0.27049 0.16973 -0.21413 + z -0.10303 0.04678 0.06195 0.10253 0.14986 -0.22901 + +reduced mass(g/mol) 1.207 1.568 1.609 1.995 2.747 1.247 + + + mode 19 20 21 22 23 24 + + frequency 1326.94 1395.67 1411.52 1415.09 1417.77 1771.88 + + symmetry a' a' a" a' a" a' + + IR YES YES YES YES YES YES +|dDIP/dQ| (a.u.) 0.0063 0.0033 0.0010 0.0016 0.0032 0.0095 +intensity (km/mol) 71.48 18.88 1.68 4.30 18.37 160.09 +intensity ( % ) 44.65 11.79 1.05 2.69 11.48 100.00 + + RAMAN YES YES YES YES YES YES + + 1 o x -0.00779 -0.00225 0.00000 0.00840 -0.00000 0.01356 + y 0.00576 0.02567 0.00000 0.00642 -0.00000 -0.48840 + z 0.00000 0.00000 -0.00184 -0.00000 -0.00538 0.00000 + 2 c x -0.11716 0.00032 0.00000 0.02680 -0.00000 0.00400 + y -0.03627 0.01345 0.00000 0.06144 -0.00000 -0.04364 + z -0.00000 0.00000 0.03665 0.00000 0.03728 0.00000 + 3 c x -0.09425 0.05318 0.00000 0.00370 -0.00000 0.00794 + y 0.04279 0.02485 -0.00000 -0.01404 0.00000 -0.04548 + z -0.00000 -0.00000 -0.04916 0.00000 0.02593 -0.00000 + 4 c x 0.06430 -0.00440 -0.00000 -0.05267 0.00000 -0.02486 + y 0.00246 -0.01066 -0.00000 -0.00220 0.00000 0.74626 + z -0.00000 -0.00000 -0.00354 0.00000 0.03713 -0.00000 + 5 h x 0.31480 -0.12087 -0.00000 -0.53658 0.00000 -0.22150 + y 0.03143 -0.01070 -0.00000 -0.04001 0.00000 -0.07131 + z 0.00000 -0.00000 -0.41631 -0.00000 -0.58904 -0.00000 + 6 h x 0.12276 -0.25162 0.00000 0.07425 -0.00000 -0.15757 + y -0.21960 0.38711 -0.00000 -0.09481 0.00000 0.20068 + z 0.00000 0.00000 0.61037 -0.00000 -0.39737 0.00000 + 7 h x 0.40876 0.09384 -0.02964 0.27006 -0.09009 0.07178 + y 0.12013 -0.09757 -0.25889 -0.38888 -0.40060 0.02997 + z -0.29765 -0.09518 -0.03198 -0.29869 -0.03534 -0.03159 + 8 h x 0.40876 0.09384 0.02964 0.27006 0.09009 0.07178 + y 0.12013 -0.09757 0.25889 -0.38888 0.40060 0.02997 + z 0.29765 0.09518 -0.03198 0.29869 -0.03534 0.03159 + 9 h x 0.31078 -0.18232 -0.36575 0.02654 0.26176 0.08715 + y -0.12524 -0.45896 -0.14298 0.13597 0.08217 -0.13378 + z 0.14469 0.33551 0.04512 -0.10780 -0.02664 0.08768 + 10 h x 0.31078 -0.18232 0.36575 0.02654 -0.26176 0.08715 + y -0.12524 -0.45896 0.14298 0.13597 -0.08217 -0.13378 + z -0.14469 -0.33551 0.04512 0.10780 -0.02664 -0.08768 + +reduced mass(g/mol) 1.338 1.059 1.050 1.092 1.046 10.766 + + + mode 25 26 27 28 29 30 + + frequency 2935.92 2950.81 3011.16 3036.78 3053.95 3072.08 + + symmetry a' a' a" a" a' a' + + IR YES YES YES YES YES YES +|dDIP/dQ| (a.u.) 0.0010 0.0012 0.0017 0.0010 0.0026 0.0021 +intensity (km/mol) 1.72 2.54 5.02 1.91 12.26 7.71 +intensity ( % ) 1.07 1.59 3.14 1.20 7.66 4.81 + + RAMAN YES YES YES YES YES YES + + 1 o x -0.00020 0.00012 -0.00000 -0.00000 0.00033 0.00018 + y -0.00069 -0.00042 0.00000 -0.00000 -0.00036 0.00109 + z 0.00000 0.00000 0.00024 0.00025 0.00000 -0.00000 + 2 c x -0.00495 0.04679 -0.00000 0.00000 -0.04367 0.00303 + y -0.00297 0.01958 -0.00000 -0.00000 0.08379 -0.00518 + z 0.00000 0.00000 -0.00123 -0.09206 -0.00000 0.00000 + 3 c x -0.03180 -0.00371 -0.00000 0.00000 -0.00391 -0.05688 + y 0.04186 0.00491 -0.00000 0.00000 -0.00472 -0.07396 + z -0.00000 0.00000 0.09178 -0.00116 0.00000 -0.00000 + 4 c x 0.00191 -0.00149 0.00000 0.00000 -0.00183 -0.00014 + y 0.00044 -0.00064 -0.00000 0.00000 0.00073 -0.00276 + z -0.00000 0.00000 0.00054 -0.00087 -0.00000 0.00000 + 5 h x -0.01165 0.09064 -0.00000 -0.00000 0.13433 -0.00695 + y 0.06920 -0.52493 0.00000 0.00000 -0.82891 0.05536 + z -0.00000 0.00000 0.00043 -0.01210 -0.00000 0.00000 + 6 h x 0.30746 0.03743 0.00000 -0.00000 0.04990 0.70907 + y 0.25797 0.02953 0.00000 -0.00000 0.04004 0.57724 + z 0.00000 -0.00000 0.01295 -0.00007 0.00000 -0.00000 + 7 h x 0.03293 -0.31537 0.00389 0.38866 0.19923 -0.01273 + y -0.01690 0.15136 -0.00117 -0.17999 -0.08421 0.00553 + z 0.05137 -0.47757 0.00643 0.55873 0.30662 -0.01830 + 8 h x 0.03293 -0.31537 -0.00389 -0.38866 0.19923 -0.01273 + y -0.01690 0.15136 0.00117 0.17999 -0.08421 0.00553 + z -0.05137 0.47757 0.00643 0.55873 -0.30662 0.01830 + 9 h x 0.02841 0.00263 0.03485 -0.00119 0.00035 -0.01808 + y -0.37552 -0.04245 -0.42824 0.00461 0.00605 0.15752 + z -0.51939 -0.05854 -0.55771 0.00598 0.00808 0.22453 + 10 h x 0.02841 0.00263 -0.03485 0.00119 0.00035 -0.01808 + y -0.37552 -0.04245 0.42824 -0.00461 0.00605 0.15752 + z 0.51939 0.05854 -0.55771 0.00598 -0.00808 -0.22453 + +reduced mass(g/mol) 1.039 1.037 1.101 1.101 1.107 1.104 + + + ************************************************************** + * * + * zero point VIBRATIONAL energy : 0.0807347 Hartree * + * SCF-energy : -193.0049629 * + * SCF + E(vib0) : -192.9242282 * + * * + ************************************************************** + + + + + time elapsed for vibrational analysis 0.02 sec + + + ------------------------------------------------------------------------ + total cpu-time : 9.86 seconds + total wall-time : 12.30 seconds + ------------------------------------------------------------------------ + + **** force : all done **** + + + 2023-01-25 00:18:18.200 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/ref_output.json new file mode 100644 index 0000000..39566dd --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/ref_output.json @@ -0,0 +1,1971 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "AoforceOutput", + "@version": "1.3.0", + "numerical_integration": { + "@module": "turbomoleio.output.data", + "@class": "AoforceNumericalIntegrationData", + "@version": "1.3.0", + "core_memory_dft": 497, + "memory_per_atom": 61, + "atoms_per_loop": 10, + "construction_timings": [ + [ + " first deriv. of -> Dip. deriv.", + 0.0, + 0.0 + ], + [ + " first deriv. of \n -> RHS\n second deriv. of -> Hessian\n -> Hessian\n nucl. rep. -> Hessian", + 0.04, + 0.06 + ], + [ + " second deriv. of 2e energy -> Hessian\n treating Coulomb (and exchange) contribution", + 1.78, + 1.78 + ], + [ + " second deriv. of 2e energy -> Hessian\n treating exchange-correlation contribution", + 2.06, + 2.06 + ], + [ + "", + 0.0, + 0.02 + ], + [ + " *S(i,j)xi -> Dip. deriv.", + 0.0, + 0.01 + ], + [ + " epsilon(i)*S(i,j)xi*S(i,j)chi -> Hessian", + 0.0, + 0.01 + ], + [ + " G(a,i)[S(k,l)xi] -> RHS\n G(i,j)[S(k,l)xi]*S(i,j)chi -> Hessian", + 0.99, + 1.11 + ], + [ + " G(mu,nu)[D(kap,lam)]xi", + 1.58, + 1.62 + ], + [ + " F(a,i)xi -> RHS\n F(i,j)xi*S(i,j)chi -> Hessian", + 0.0, + 0.03 + ], + [ + " epsilon(i)*S(a,i)xi -> RHS", + 0.0, + 0.03 + ], + [ + " *U(a,i)xi -> Dip. deriv.", + 0.0, + 0.03 + ], + [ + " RHS(a,i)xi*U(a,i)chi -> Hessian", + 0.0, + 0.02 + ] + ] + }, + "rotational": { + "@module": "turbomoleio.output.data", + "@class": "AoforceRotationalData", + "@version": "1.3.0", + "b": [ + 0.3345568942, + 0.276870323, + 0.1607738674 + ], + "intensities": [ + 0.0004207932, + 1.0465669942, + 0.0 + ], + "m": [ + [ + 0.9999983143, + 0.0018361363, + 0.0 + ], + [ + -0.0018361363, + 0.9999983143, + 0.0 + ], + [ + 0.0, + 0.0, + 1.0 + ] + ], + "dipole_moment": [ + 0.0205132454, + 1.0230185698, + 0.0 + ] + }, + "vibrational": { + "@module": "turbomoleio.output.data", + "@class": "AoforceVibrationalData", + "@version": "1.3.0", + "frequencies": [ + -113.75, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 157.28, + 372.62, + 482.93, + 510.25, + 764.5, + 847.27, + 883.74, + 1033.97, + 1070.1, + 1191.2, + 1325.01, + 1326.94, + 1395.67, + 1411.52, + 1415.09, + 1417.77, + 1771.88, + 2935.92, + 2950.81, + 3011.16, + 3036.78, + 3053.95, + 3072.08 + ], + "symmetries": [ + "a\"", + null, + null, + null, + null, + null, + "a\"", + "a'", + "a\"", + "a'", + "a'", + null, + "a\"", + "a'", + "a'", + "a\"", + "a'", + "a'", + "a'", + "a'", + "a\"", + "a'", + "a\"", + "a'", + "a'", + "a'", + "a\"", + "a\"", + "a'", + "a'" + ], + "ir": [ + true, + null, + null, + null, + null, + null, + null, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true + ], + "dDIP_dQ": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0006, + 0.001, + 0.0002, + 0.0026, + 0.0011, + 0.0004, + 0.0025, + 0.0009, + 0.0022, + 0.0073, + 0.0028, + 0.0063, + 0.0033, + 0.001, + 0.0016, + 0.0032, + 0.0095, + 0.001, + 0.0012, + 0.0017, + 0.001, + 0.0026, + 0.0021 + ], + "intensities": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.56, + 1.62, + 0.09, + 11.66, + 2.13, + 0.29, + 10.77, + 1.31, + 8.93, + 93.89, + 14.38, + 71.48, + 18.88, + 1.68, + 4.3, + 18.37, + 160.09, + 1.72, + 2.54, + 5.02, + 1.91, + 12.26, + 7.71 + ], + "intensities_perc": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.35, + 1.01, + 0.06, + 7.28, + 1.33, + 0.18, + 6.73, + 0.82, + 5.58, + 58.65, + 8.98, + 44.65, + 11.79, + 1.05, + 2.69, + 11.48, + 100.0, + 1.07, + 1.59, + 3.14, + 1.2, + 7.66, + 4.81 + ], + "raman": [ + true, + null, + null, + null, + null, + null, + null, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true + ], + "eigenvectors": [ + [ + [ + 0.0, + 0.0, + 0.0492 + ], + [ + 0.0, + -0.0, + -0.00463 + ], + [ + 0.0, + 0.0, + -0.04844 + ], + [ + 0.0, + 0.0, + 0.01476 + ], + [ + 0.0, + -0.0, + 0.49283 + ], + [ + 0.0, + -0.0, + -0.176 + ], + [ + 0.28911, + -0.39613, + -0.32814 + ], + [ + -0.28911, + 0.39613, + -0.32814 + ], + [ + -0.07583, + -0.0811, + 0.00756 + ], + [ + 0.07583, + 0.0811, + 0.00756 + ] + ], + [ + [ + 0.00267, + -0.00381, + -0.10381 + ], + [ + 0.00701, + -0.00648, + 0.05039 + ], + [ + 0.00691, + -0.00095, + 0.38141 + ], + [ + 0.00526, + -0.00374, + 0.0902 + ], + [ + 0.00934, + -0.00612, + 0.2431 + ], + [ + 0.00543, + 0.00088, + 0.38454 + ], + [ + 0.12241, + -0.14646, + -0.0712 + ], + [ + -0.10956, + 0.13092, + -0.0712 + ], + [ + 0.12441, + -0.13964, + 0.49214 + ], + [ + -0.10775, + 0.13797, + 0.49214 + ] + ], + [ + [ + 0.35621, + 0.03777, + -0.02338 + ], + [ + -0.01248, + 0.26468, + 0.11331 + ], + [ + -0.00414, + -0.20458, + -0.02079 + ], + [ + 0.13614, + 0.03173, + 0.01828 + ], + [ + -0.21048, + 0.23406, + 0.14368 + ], + [ + 0.12205, + -0.35983, + -0.08947 + ], + [ + -0.00816, + 0.34219, + 0.13434 + ], + [ + 0.08269, + 0.40561, + 0.13434 + ], + [ + -0.16961, + -0.24646, + 0.0 + ], + [ + -0.07869, + -0.18298, + 0.0 + ] + ], + [ + [ + 0.08763, + -0.12501, + 0.17167 + ], + [ + 0.23021, + -0.21276, + 0.19089 + ], + [ + 0.22699, + -0.03128, + 0.004 + ], + [ + 0.17274, + -0.12267, + 0.12631 + ], + [ + 0.30679, + -0.20091, + 0.13995 + ], + [ + 0.17819, + 0.02876, + -0.03374 + ], + [ + 0.14633, + -0.2236, + 0.24447 + ], + [ + 0.27562, + -0.2864, + 0.24447 + ], + [ + 0.2087, + 0.00407, + -0.02349 + ], + [ + 0.3381, + -0.05879, + -0.02349 + ] + ], + [ + [ + -0.03439, + 0.20845, + -0.08436 + ], + [ + 0.10132, + 0.12492, + 0.21333 + ], + [ + 0.09825, + 0.29765, + -0.05039 + ], + [ + 0.04661, + 0.21067, + 0.01499 + ], + [ + 0.1742, + 0.13619, + 0.28877 + ], + [ + 0.0518, + 0.3548, + -0.19524 + ], + [ + -0.0061, + 0.00962, + 0.25059 + ], + [ + 0.17212, + 0.15982, + 0.25059 + ], + [ + 0.05325, + 0.22623, + -0.0 + ], + [ + 0.23161, + 0.37655, + 0.0 + ] + ], + [ + [ + 0.11162, + 0.06509, + 0.02308 + ], + [ + 0.14993, + 0.04151, + -0.33119 + ], + [ + 0.14906, + 0.09027, + 0.04812 + ], + [ + 0.13449, + 0.06571, + -0.0752 + ], + [ + 0.1705, + 0.04469, + -0.39945 + ], + [ + 0.13595, + 0.10639, + 0.23143 + ], + [ + 0.2735, + 0.10557, + -0.39525 + ], + [ + 0.01602, + -0.04523, + -0.39525 + ], + [ + 0.29038, + 0.16678, + 0.0 + ], + [ + 0.03269, + 0.01586, + 0.0 + ] + ], + [ + [ + -0.03882, + 0.11693, + 0.54065 + ], + [ + -0.10279, + 0.1563, + 0.0071 + ], + [ + -0.10135, + 0.07488, + 0.15 + ], + [ + -0.077, + 0.11588, + 0.26205 + ], + [ + -0.13715, + 0.15099, + -0.23645 + ], + [ + -0.07945, + 0.04794, + 0.35448 + ], + [ + -0.0488, + 0.38022, + 0.03967 + ], + [ + -0.13952, + -0.02972, + 0.03967 + ], + [ + -0.07677, + 0.27826, + -0.0 + ], + [ + -0.16757, + -0.13202, + 0.0 + ] + ], + [ + [ + 0.0, + -0.0, + -0.04194 + ], + [ + -0.0, + 0.0, + 0.03831 + ], + [ + 0.0, + -0.0, + 0.00319 + ], + [ + 0.0, + -0.0, + 0.01891 + ], + [ + -0.0, + -0.0, + 0.17736 + ], + [ + 0.0, + -0.0, + 0.48883 + ], + [ + 0.05396, + -0.10868, + -0.03246 + ], + [ + -0.05396, + 0.10868, + -0.03246 + ], + [ + 0.18565, + 0.45313, + -0.32776 + ], + [ + -0.18565, + -0.45313, + -0.32776 + ] + ], + [ + [ + -0.00202, + -0.13173, + 0.0 + ], + [ + -0.15353, + 0.10217, + -0.0 + ], + [ + 0.1513, + 0.09522, + -0.0 + ], + [ + 0.00089, + -0.12991, + -0.0 + ], + [ + -0.48067, + 0.05041, + 0.0 + ], + [ + -0.08593, + 0.38771, + -0.0 + ], + [ + -0.07215, + 0.29857, + 0.00552 + ], + [ + -0.07215, + 0.29857, + -0.00552 + ], + [ + 0.37944, + 0.12585, + -0.00784 + ], + [ + 0.37944, + 0.12585, + 0.00784 + ] + ], + [ + [ + -0.0, + -0.0, + -0.10981 + ], + [ + -0.0, + 0.0, + -0.02475 + ], + [ + 0.0, + -0.0, + -0.00355 + ], + [ + 0.0, + -0.0, + 0.27488 + ], + [ + -0.0, + 0.0, + -0.27404 + ], + [ + 0.0, + -0.0, + -0.3185 + ], + [ + 0.29513, + 0.24012, + -0.15284 + ], + [ + -0.29513, + -0.24012, + -0.15284 + ], + [ + -0.39216, + 0.15376, + -0.14852 + ], + [ + 0.39216, + -0.15376, + -0.14852 + ] + ], + [ + [ + -0.30338, + -0.01027, + 0.0 + ], + [ + 0.12972, + 0.15827, + 0.0 + ], + [ + 0.1133, + -0.15172, + 0.0 + ], + [ + 0.13112, + 0.00249, + -0.0 + ], + [ + -0.2129, + 0.10527, + 0.0 + ], + [ + 0.34096, + -0.42998, + 0.0 + ], + [ + 0.21211, + 0.37329, + 0.01161 + ], + [ + 0.21211, + 0.37329, + -0.01161 + ], + [ + -0.09751, + -0.18332, + 0.01018 + ], + [ + -0.09751, + -0.18332, + -0.01018 + ] + ], + [ + [ + 0.01637, + -0.15249, + -0.0 + ], + [ + 0.25588, + 0.09816, + 0.0 + ], + [ + -0.26482, + 0.12899, + -0.0 + ], + [ + -0.0011, + -0.13027, + 0.0 + ], + [ + 0.02868, + 0.06975, + -0.0 + ], + [ + -0.42225, + 0.31167, + 0.0 + ], + [ + 0.32881, + 0.29587, + 0.01636 + ], + [ + 0.32881, + 0.29587, + -0.01636 + ], + [ + -0.20217, + 0.14639, + -0.00576 + ], + [ + -0.20217, + 0.14639, + 0.00576 + ] + ], + [ + [ + 0.0, + -0.0, + 0.00887 + ], + [ + 0.0, + 0.0, + -0.09871 + ], + [ + -0.0, + 0.0, + 0.09053 + ], + [ + 0.0, + -0.0, + -0.00868 + ], + [ + 0.0, + 0.0, + 0.25154 + ], + [ + -0.0, + 0.0, + -0.22614 + ], + [ + -0.40951, + -0.21673, + 0.12035 + ], + [ + 0.40951, + 0.21673, + 0.12035 + ], + [ + -0.38405, + 0.21559, + -0.10303 + ], + [ + 0.38405, + -0.21559, + -0.10303 + ] + ], + [ + [ + -0.02543, + 0.00344, + -0.0 + ], + [ + 0.04893, + 0.13177, + -0.0 + ], + [ + 0.00883, + -0.13705, + 0.0 + ], + [ + -0.10674, + -0.00362, + 0.0 + ], + [ + 0.56453, + 0.21566, + 0.0 + ], + [ + -0.31827, + 0.27153, + 0.0 + ], + [ + -0.03713, + -0.17876, + -0.03584 + ], + [ + -0.03713, + -0.17876, + 0.03584 + ], + [ + 0.40768, + -0.03918, + -0.04678 + ], + [ + 0.40768, + -0.03918, + 0.04678 + ] + ], + [ + [ + 0.00231, + 0.10928, + 0.0 + ], + [ + 0.05685, + -0.13378, + 0.0 + ], + [ + -0.0474, + -0.11294, + 0.0 + ], + [ + -0.01233, + 0.04506, + -0.0 + ], + [ + -0.52142, + -0.21973, + -0.0 + ], + [ + -0.35028, + 0.26893, + -0.0 + ], + [ + 0.12207, + 0.30561, + 0.08598 + ], + [ + 0.12207, + 0.30561, + -0.08598 + ], + [ + 0.31262, + 0.00395, + -0.06195 + ], + [ + 0.31262, + 0.00395, + 0.06195 + ] + ], + [ + [ + 0.0, + 0.0, + -0.03972 + ], + [ + 0.0, + -0.0, + -0.12919 + ], + [ + -0.0, + -0.0, + -0.13327 + ], + [ + -0.0, + 0.0, + 0.23053 + ], + [ + -0.0, + -0.0, + 0.30264 + ], + [ + -0.0, + 0.0, + 0.29357 + ], + [ + -0.38597, + -0.13219, + 0.10483 + ], + [ + 0.38597, + 0.13219, + 0.10483 + ], + [ + 0.32467, + -0.27049, + 0.10253 + ], + [ + -0.32467, + 0.27049, + 0.10253 + ] + ], + [ + [ + -0.05861, + 0.00441, + 0.0 + ], + [ + -0.09528, + 0.03471, + -0.0 + ], + [ + -0.1014, + -0.05875, + -0.0 + ], + [ + 0.35947, + 0.01218, + 0.0 + ], + [ + -0.05156, + 0.02043, + -0.0 + ], + [ + -0.48655, + 0.41366, + 0.0 + ], + [ + -0.1898, + -0.35118, + -0.05827 + ], + [ + -0.1898, + -0.35118, + 0.05827 + ], + [ + -0.04587, + 0.16973, + -0.14986 + ], + [ + -0.04587, + 0.16973, + 0.14986 + ] + ], + [ + [ + -0.00439, + -0.00481, + 0.0 + ], + [ + 0.07082, + 0.03751, + -0.0 + ], + [ + -0.09921, + 0.06613, + -0.0 + ], + [ + 0.03222, + -0.00465, + -0.0 + ], + [ + -0.29571, + -0.02474, + 0.0 + ], + [ + 0.18936, + -0.28673, + 0.0 + ], + [ + -0.30023, + -0.18173, + 0.17634 + ], + [ + -0.30023, + -0.18173, + -0.17634 + ], + [ + 0.36539, + -0.21413, + 0.22901 + ], + [ + 0.36539, + -0.21413, + -0.22901 + ] + ], + [ + [ + -0.00779, + 0.00576, + 0.0 + ], + [ + -0.11716, + -0.03627, + -0.0 + ], + [ + -0.09425, + 0.04279, + -0.0 + ], + [ + 0.0643, + 0.00246, + -0.0 + ], + [ + 0.3148, + 0.03143, + 0.0 + ], + [ + 0.12276, + -0.2196, + 0.0 + ], + [ + 0.40876, + 0.12013, + -0.29765 + ], + [ + 0.40876, + 0.12013, + 0.29765 + ], + [ + 0.31078, + -0.12524, + 0.14469 + ], + [ + 0.31078, + -0.12524, + -0.14469 + ] + ], + [ + [ + -0.00225, + 0.02567, + 0.0 + ], + [ + 0.00032, + 0.01345, + 0.0 + ], + [ + 0.05318, + 0.02485, + -0.0 + ], + [ + -0.0044, + -0.01066, + -0.0 + ], + [ + -0.12087, + -0.0107, + -0.0 + ], + [ + -0.25162, + 0.38711, + 0.0 + ], + [ + 0.09384, + -0.09757, + -0.09518 + ], + [ + 0.09384, + -0.09757, + 0.09518 + ], + [ + -0.18232, + -0.45896, + 0.33551 + ], + [ + -0.18232, + -0.45896, + -0.33551 + ] + ], + [ + [ + 0.0, + 0.0, + -0.00184 + ], + [ + 0.0, + 0.0, + 0.03665 + ], + [ + 0.0, + -0.0, + -0.04916 + ], + [ + -0.0, + -0.0, + -0.00354 + ], + [ + -0.0, + -0.0, + -0.41631 + ], + [ + 0.0, + -0.0, + 0.61037 + ], + [ + -0.02964, + -0.25889, + -0.03198 + ], + [ + 0.02964, + 0.25889, + -0.03198 + ], + [ + -0.36575, + -0.14298, + 0.04512 + ], + [ + 0.36575, + 0.14298, + 0.04512 + ] + ], + [ + [ + 0.0084, + 0.00642, + -0.0 + ], + [ + 0.0268, + 0.06144, + 0.0 + ], + [ + 0.0037, + -0.01404, + 0.0 + ], + [ + -0.05267, + -0.0022, + 0.0 + ], + [ + -0.53658, + -0.04001, + -0.0 + ], + [ + 0.07425, + -0.09481, + -0.0 + ], + [ + 0.27006, + -0.38888, + -0.29869 + ], + [ + 0.27006, + -0.38888, + 0.29869 + ], + [ + 0.02654, + 0.13597, + -0.1078 + ], + [ + 0.02654, + 0.13597, + 0.1078 + ] + ], + [ + [ + -0.0, + -0.0, + -0.00538 + ], + [ + -0.0, + -0.0, + 0.03728 + ], + [ + -0.0, + 0.0, + 0.02593 + ], + [ + 0.0, + 0.0, + 0.03713 + ], + [ + 0.0, + 0.0, + -0.58904 + ], + [ + -0.0, + 0.0, + -0.39737 + ], + [ + -0.09009, + -0.4006, + -0.03534 + ], + [ + 0.09009, + 0.4006, + -0.03534 + ], + [ + 0.26176, + 0.08217, + -0.02664 + ], + [ + -0.26176, + -0.08217, + -0.02664 + ] + ], + [ + [ + 0.01356, + -0.4884, + 0.0 + ], + [ + 0.004, + -0.04364, + 0.0 + ], + [ + 0.00794, + -0.04548, + -0.0 + ], + [ + -0.02486, + 0.74626, + -0.0 + ], + [ + -0.2215, + -0.07131, + -0.0 + ], + [ + -0.15757, + 0.20068, + 0.0 + ], + [ + 0.07178, + 0.02997, + -0.03159 + ], + [ + 0.07178, + 0.02997, + 0.03159 + ], + [ + 0.08715, + -0.13378, + 0.08768 + ], + [ + 0.08715, + -0.13378, + -0.08768 + ] + ], + [ + [ + -0.0002, + -0.00069, + 0.0 + ], + [ + -0.00495, + -0.00297, + 0.0 + ], + [ + -0.0318, + 0.04186, + -0.0 + ], + [ + 0.00191, + 0.00044, + -0.0 + ], + [ + -0.01165, + 0.0692, + -0.0 + ], + [ + 0.30746, + 0.25797, + 0.0 + ], + [ + 0.03293, + -0.0169, + 0.05137 + ], + [ + 0.03293, + -0.0169, + -0.05137 + ], + [ + 0.02841, + -0.37552, + -0.51939 + ], + [ + 0.02841, + -0.37552, + 0.51939 + ] + ], + [ + [ + 0.00012, + -0.00042, + 0.0 + ], + [ + 0.04679, + 0.01958, + 0.0 + ], + [ + -0.00371, + 0.00491, + 0.0 + ], + [ + -0.00149, + -0.00064, + 0.0 + ], + [ + 0.09064, + -0.52493, + 0.0 + ], + [ + 0.03743, + 0.02953, + -0.0 + ], + [ + -0.31537, + 0.15136, + -0.47757 + ], + [ + -0.31537, + 0.15136, + 0.47757 + ], + [ + 0.00263, + -0.04245, + -0.05854 + ], + [ + 0.00263, + -0.04245, + 0.05854 + ] + ], + [ + [ + -0.0, + 0.0, + 0.00024 + ], + [ + -0.0, + -0.0, + -0.00123 + ], + [ + -0.0, + -0.0, + 0.09178 + ], + [ + 0.0, + -0.0, + 0.00054 + ], + [ + -0.0, + 0.0, + 0.00043 + ], + [ + 0.0, + 0.0, + 0.01295 + ], + [ + 0.00389, + -0.00117, + 0.00643 + ], + [ + -0.00389, + 0.00117, + 0.00643 + ], + [ + 0.03485, + -0.42824, + -0.55771 + ], + [ + -0.03485, + 0.42824, + -0.55771 + ] + ], + [ + [ + -0.0, + -0.0, + 0.00025 + ], + [ + 0.0, + -0.0, + -0.09206 + ], + [ + 0.0, + 0.0, + -0.00116 + ], + [ + 0.0, + 0.0, + -0.00087 + ], + [ + -0.0, + 0.0, + -0.0121 + ], + [ + -0.0, + -0.0, + -7e-05 + ], + [ + 0.38866, + -0.17999, + 0.55873 + ], + [ + -0.38866, + 0.17999, + 0.55873 + ], + [ + -0.00119, + 0.00461, + 0.00598 + ], + [ + 0.00119, + -0.00461, + 0.00598 + ] + ], + [ + [ + 0.00033, + -0.00036, + 0.0 + ], + [ + -0.04367, + 0.08379, + -0.0 + ], + [ + -0.00391, + -0.00472, + 0.0 + ], + [ + -0.00183, + 0.00073, + -0.0 + ], + [ + 0.13433, + -0.82891, + -0.0 + ], + [ + 0.0499, + 0.04004, + 0.0 + ], + [ + 0.19923, + -0.08421, + 0.30662 + ], + [ + 0.19923, + -0.08421, + -0.30662 + ], + [ + 0.00035, + 0.00605, + 0.00808 + ], + [ + 0.00035, + 0.00605, + -0.00808 + ] + ], + [ + [ + 0.00018, + 0.00109, + -0.0 + ], + [ + 0.00303, + -0.00518, + 0.0 + ], + [ + -0.05688, + -0.07396, + -0.0 + ], + [ + -0.00014, + -0.00276, + 0.0 + ], + [ + -0.00695, + 0.05536, + 0.0 + ], + [ + 0.70907, + 0.57724, + -0.0 + ], + [ + -0.01273, + 0.00553, + -0.0183 + ], + [ + -0.01273, + 0.00553, + 0.0183 + ], + [ + -0.01808, + 0.15752, + 0.22453 + ], + [ + -0.01808, + 0.15752, + -0.22453 + ] + ] + ], + "reduced_masses": [ + 1.073, + 2.89, + 4.538, + 4.529, + 4.193, + 3.408, + 7.394, + 1.055, + 2.18, + 2.027, + 3.434, + 3.328, + 1.207, + 1.568, + 1.609, + 1.995, + 2.747, + 1.247, + 1.338, + 1.059, + 1.05, + 1.092, + 1.046, + 10.766, + 1.039, + 1.037, + 1.101, + 1.101, + 1.107, + 1.104 + ], + "energies": { + "zpve": 0.0807347, + "scf": -193.0049629, + "total": -192.9242282 + } + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:05.960000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:18.200000" + }, + "cpu_time": 9.86, + "wall_time": 12.3 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "force" + } +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/ref_parser.json new file mode 100644 index 0000000..196dc21 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/aoforce/aceton_full/ref_parser.json @@ -0,0 +1,2181 @@ +{ + "all_done": true, + "header": { + "executable": "force", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:05.960000" + } + }, + "centers": { + "center_of_mass": [ + 0.00543831, + -1.01535818, + 0.0 + ], + "center_of_charge": [ + 0.00482639, + -0.8580092, + 0.0 + ] + }, + "coordinates": { + "coords": [ + [ + 0.05814498, + -3.50738391, + 0.0 + ], + [ + 2.43488579, + 0.35436813, + 0.0 + ], + [ + -2.48030013, + 0.26702469, + 0.0 + ], + [ + -0.00509977, + -1.20231423, + 0.0 + ], + [ + 2.11408643, + 2.42830913, + 0.0 + ], + [ + -4.10640229, + -1.05476626, + 0.0 + ], + [ + 3.57887083, + -0.16668276, + 1.68562205 + ], + [ + 3.57887083, + -0.16668276, + -1.68562205 + ], + [ + -2.58652834, + 1.52406399, + 1.68701865 + ], + [ + -2.58652834, + 1.52406399, + -1.68701865 + ] + ], + "species": [ + "o", + "c", + "c", + "c", + "h", + "h", + "h", + "h", + "h", + "h" + ], + "charges": [ + 8.0, + 6.0, + 6.0, + 6.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "o": "def-SV(P)", + "c": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 68, + "number_scf_aux_basis_func": null + }, + "symmetry": { + "symbol": "cs", + "n_reps": 2, + "reps": [ + "a'", + "a\"" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": null, + "pre_scf_run": null, + "scf_iterations": null, + "scf_energies": null, + "cosmo_results": null, + "electrostatic_moments": null, + "timings": { + "cpu_time": 9.86, + "wall_time": 12.3, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:18.200000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 1e-10, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": { + "calc_type": null, + "residuum_convergence_criterium": null, + "n_occupied_orbitals": 16, + "orbital_characterization": "scfconv=8", + "max_davidson_iter": null, + "machine_precision": 2.220446049250313e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 12082, + "max_treated_vectors": 24, + "irrep_data": null + }, + "escf_iterations": { + "steps": [ + [ + [ + "a'", + 0, + 0.06477864201546545 + ], + [ + "a\"", + 0, + 0.02101071400167658 + ] + ], + [ + [ + "a'", + 0, + 0.003108084414748305 + ], + [ + "a\"", + 0, + 0.002142588191202605 + ] + ], + [ + [ + "a'", + 0, + 0.000149354224924067 + ], + [ + "a\"", + 0, + 0.0001131083813417664 + ] + ], + [ + [ + "a'", + 15, + 3.352126044199397e-06 + ], + [ + "a\"", + 9, + 1.725170449884324e-06 + ] + ] + ], + "converged": true + }, + "escf_gs_total_en": null, + "escf_excitations": null, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": { + "memory": { + "core_memory_dft": 497, + "memory_per_atom": 61, + "atoms_per_loop": 10 + }, + "construction_timings": [ + [ + " first deriv. of -> Dip. deriv.", + 0.0, + 0.0 + ], + [ + " first deriv. of \n -> RHS\n second deriv. of -> Hessian\n -> Hessian\n nucl. rep. -> Hessian", + 0.04, + 0.06 + ], + [ + " second deriv. of 2e energy -> Hessian\n treating Coulomb (and exchange) contribution", + 1.78, + 1.78 + ], + [ + " second deriv. of 2e energy -> Hessian\n treating exchange-correlation contribution", + 2.06, + 2.06 + ], + [ + "", + 0.0, + 0.02 + ], + [ + " *S(i,j)xi -> Dip. deriv.", + 0.0, + 0.01 + ], + [ + " epsilon(i)*S(i,j)xi*S(i,j)chi -> Hessian", + 0.0, + 0.01 + ], + [ + " G(a,i)[S(k,l)xi] -> RHS\n G(i,j)[S(k,l)xi]*S(i,j)chi -> Hessian", + 0.99, + 1.11 + ], + [ + " G(mu,nu)[D(kap,lam)]xi", + 1.58, + 1.62 + ], + [ + " F(a,i)xi -> RHS\n F(i,j)xi*S(i,j)chi -> Hessian", + 0.0, + 0.03 + ], + [ + " epsilon(i)*S(a,i)xi -> RHS", + 0.0, + 0.03 + ], + [ + " *U(a,i)xi -> Dip. deriv.", + 0.0, + 0.03 + ], + [ + " RHS(a,i)xi*U(a,i)chi -> Hessian", + 0.0, + 0.02 + ] + ] + }, + "aoforce_analysis": { + "rotational": { + "dipole_moment": [ + 0.0205132454, + 1.0230185698, + 0.0 + ], + "b": [ + 0.3345568942, + 0.276870323, + 0.1607738674 + ], + "intensities": [ + 0.0004207932, + 1.0465669942, + 0.0 + ], + "m": [ + [ + 0.9999983143, + 0.0018361363, + 0.0 + ], + [ + -0.0018361363, + 0.9999983143, + 0.0 + ], + [ + 0.0, + 0.0, + 1.0 + ] + ] + }, + "vibrational": { + "frequencies": [ + -113.75, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 157.28, + 372.62, + 482.93, + 510.25, + 764.5, + 847.27, + 883.74, + 1033.97, + 1070.1, + 1191.2, + 1325.01, + 1326.94, + 1395.67, + 1411.52, + 1415.09, + 1417.77, + 1771.88, + 2935.92, + 2950.81, + 3011.16, + 3036.78, + 3053.95, + 3072.08 + ], + "symmetries": [ + "a\"", + null, + null, + null, + null, + null, + "a\"", + "a'", + "a\"", + "a'", + "a'", + null, + "a\"", + "a'", + "a'", + "a\"", + "a'", + "a'", + "a'", + "a'", + "a\"", + "a'", + "a\"", + "a'", + "a'", + "a'", + "a\"", + "a\"", + "a'", + "a'" + ], + "ir": [ + true, + null, + null, + null, + null, + null, + null, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true + ], + "dDIP_dQ": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0006, + 0.001, + 0.0002, + 0.0026, + 0.0011, + 0.0004, + 0.0025, + 0.0009, + 0.0022, + 0.0073, + 0.0028, + 0.0063, + 0.0033, + 0.001, + 0.0016, + 0.0032, + 0.0095, + 0.001, + 0.0012, + 0.0017, + 0.001, + 0.0026, + 0.0021 + ], + "intensities": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.56, + 1.62, + 0.09, + 11.66, + 2.13, + 0.29, + 10.77, + 1.31, + 8.93, + 93.89, + 14.38, + 71.48, + 18.88, + 1.68, + 4.3, + 18.37, + 160.09, + 1.72, + 2.54, + 5.02, + 1.91, + 12.26, + 7.71 + ], + "intensities_perc": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.35, + 1.01, + 0.06, + 7.28, + 1.33, + 0.18, + 6.73, + 0.82, + 5.58, + 58.65, + 8.98, + 44.65, + 11.79, + 1.05, + 2.69, + 11.48, + 100.0, + 1.07, + 1.59, + 3.14, + 1.2, + 7.66, + 4.81 + ], + "raman": [ + true, + null, + null, + null, + null, + null, + null, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true + ], + "eigenvectors": [ + [ + [ + 0.0, + 0.0, + 0.0492 + ], + [ + 0.0, + -0.0, + -0.00463 + ], + [ + 0.0, + 0.0, + -0.04844 + ], + [ + 0.0, + 0.0, + 0.01476 + ], + [ + 0.0, + -0.0, + 0.49283 + ], + [ + 0.0, + -0.0, + -0.176 + ], + [ + 0.28911, + -0.39613, + -0.32814 + ], + [ + -0.28911, + 0.39613, + -0.32814 + ], + [ + -0.07583, + -0.0811, + 0.00756 + ], + [ + 0.07583, + 0.0811, + 0.00756 + ] + ], + [ + [ + 0.00267, + -0.00381, + -0.10381 + ], + [ + 0.00701, + -0.00648, + 0.05039 + ], + [ + 0.00691, + -0.00095, + 0.38141 + ], + [ + 0.00526, + -0.00374, + 0.0902 + ], + [ + 0.00934, + -0.00612, + 0.2431 + ], + [ + 0.00543, + 0.00088, + 0.38454 + ], + [ + 0.12241, + -0.14646, + -0.0712 + ], + [ + -0.10956, + 0.13092, + -0.0712 + ], + [ + 0.12441, + -0.13964, + 0.49214 + ], + [ + -0.10775, + 0.13797, + 0.49214 + ] + ], + [ + [ + 0.35621, + 0.03777, + -0.02338 + ], + [ + -0.01248, + 0.26468, + 0.11331 + ], + [ + -0.00414, + -0.20458, + -0.02079 + ], + [ + 0.13614, + 0.03173, + 0.01828 + ], + [ + -0.21048, + 0.23406, + 0.14368 + ], + [ + 0.12205, + -0.35983, + -0.08947 + ], + [ + -0.00816, + 0.34219, + 0.13434 + ], + [ + 0.08269, + 0.40561, + 0.13434 + ], + [ + -0.16961, + -0.24646, + 0.0 + ], + [ + -0.07869, + -0.18298, + 0.0 + ] + ], + [ + [ + 0.08763, + -0.12501, + 0.17167 + ], + [ + 0.23021, + -0.21276, + 0.19089 + ], + [ + 0.22699, + -0.03128, + 0.004 + ], + [ + 0.17274, + -0.12267, + 0.12631 + ], + [ + 0.30679, + -0.20091, + 0.13995 + ], + [ + 0.17819, + 0.02876, + -0.03374 + ], + [ + 0.14633, + -0.2236, + 0.24447 + ], + [ + 0.27562, + -0.2864, + 0.24447 + ], + [ + 0.2087, + 0.00407, + -0.02349 + ], + [ + 0.3381, + -0.05879, + -0.02349 + ] + ], + [ + [ + -0.03439, + 0.20845, + -0.08436 + ], + [ + 0.10132, + 0.12492, + 0.21333 + ], + [ + 0.09825, + 0.29765, + -0.05039 + ], + [ + 0.04661, + 0.21067, + 0.01499 + ], + [ + 0.1742, + 0.13619, + 0.28877 + ], + [ + 0.0518, + 0.3548, + -0.19524 + ], + [ + -0.0061, + 0.00962, + 0.25059 + ], + [ + 0.17212, + 0.15982, + 0.25059 + ], + [ + 0.05325, + 0.22623, + -0.0 + ], + [ + 0.23161, + 0.37655, + 0.0 + ] + ], + [ + [ + 0.11162, + 0.06509, + 0.02308 + ], + [ + 0.14993, + 0.04151, + -0.33119 + ], + [ + 0.14906, + 0.09027, + 0.04812 + ], + [ + 0.13449, + 0.06571, + -0.0752 + ], + [ + 0.1705, + 0.04469, + -0.39945 + ], + [ + 0.13595, + 0.10639, + 0.23143 + ], + [ + 0.2735, + 0.10557, + -0.39525 + ], + [ + 0.01602, + -0.04523, + -0.39525 + ], + [ + 0.29038, + 0.16678, + 0.0 + ], + [ + 0.03269, + 0.01586, + 0.0 + ] + ], + [ + [ + -0.03882, + 0.11693, + 0.54065 + ], + [ + -0.10279, + 0.1563, + 0.0071 + ], + [ + -0.10135, + 0.07488, + 0.15 + ], + [ + -0.077, + 0.11588, + 0.26205 + ], + [ + -0.13715, + 0.15099, + -0.23645 + ], + [ + -0.07945, + 0.04794, + 0.35448 + ], + [ + -0.0488, + 0.38022, + 0.03967 + ], + [ + -0.13952, + -0.02972, + 0.03967 + ], + [ + -0.07677, + 0.27826, + -0.0 + ], + [ + -0.16757, + -0.13202, + 0.0 + ] + ], + [ + [ + 0.0, + -0.0, + -0.04194 + ], + [ + -0.0, + 0.0, + 0.03831 + ], + [ + 0.0, + -0.0, + 0.00319 + ], + [ + 0.0, + -0.0, + 0.01891 + ], + [ + -0.0, + -0.0, + 0.17736 + ], + [ + 0.0, + -0.0, + 0.48883 + ], + [ + 0.05396, + -0.10868, + -0.03246 + ], + [ + -0.05396, + 0.10868, + -0.03246 + ], + [ + 0.18565, + 0.45313, + -0.32776 + ], + [ + -0.18565, + -0.45313, + -0.32776 + ] + ], + [ + [ + -0.00202, + -0.13173, + 0.0 + ], + [ + -0.15353, + 0.10217, + -0.0 + ], + [ + 0.1513, + 0.09522, + -0.0 + ], + [ + 0.00089, + -0.12991, + -0.0 + ], + [ + -0.48067, + 0.05041, + 0.0 + ], + [ + -0.08593, + 0.38771, + -0.0 + ], + [ + -0.07215, + 0.29857, + 0.00552 + ], + [ + -0.07215, + 0.29857, + -0.00552 + ], + [ + 0.37944, + 0.12585, + -0.00784 + ], + [ + 0.37944, + 0.12585, + 0.00784 + ] + ], + [ + [ + -0.0, + -0.0, + -0.10981 + ], + [ + -0.0, + 0.0, + -0.02475 + ], + [ + 0.0, + -0.0, + -0.00355 + ], + [ + 0.0, + -0.0, + 0.27488 + ], + [ + -0.0, + 0.0, + -0.27404 + ], + [ + 0.0, + -0.0, + -0.3185 + ], + [ + 0.29513, + 0.24012, + -0.15284 + ], + [ + -0.29513, + -0.24012, + -0.15284 + ], + [ + -0.39216, + 0.15376, + -0.14852 + ], + [ + 0.39216, + -0.15376, + -0.14852 + ] + ], + [ + [ + -0.30338, + -0.01027, + 0.0 + ], + [ + 0.12972, + 0.15827, + 0.0 + ], + [ + 0.1133, + -0.15172, + 0.0 + ], + [ + 0.13112, + 0.00249, + -0.0 + ], + [ + -0.2129, + 0.10527, + 0.0 + ], + [ + 0.34096, + -0.42998, + 0.0 + ], + [ + 0.21211, + 0.37329, + 0.01161 + ], + [ + 0.21211, + 0.37329, + -0.01161 + ], + [ + -0.09751, + -0.18332, + 0.01018 + ], + [ + -0.09751, + -0.18332, + -0.01018 + ] + ], + [ + [ + 0.01637, + -0.15249, + -0.0 + ], + [ + 0.25588, + 0.09816, + 0.0 + ], + [ + -0.26482, + 0.12899, + -0.0 + ], + [ + -0.0011, + -0.13027, + 0.0 + ], + [ + 0.02868, + 0.06975, + -0.0 + ], + [ + -0.42225, + 0.31167, + 0.0 + ], + [ + 0.32881, + 0.29587, + 0.01636 + ], + [ + 0.32881, + 0.29587, + -0.01636 + ], + [ + -0.20217, + 0.14639, + -0.00576 + ], + [ + -0.20217, + 0.14639, + 0.00576 + ] + ], + [ + [ + 0.0, + -0.0, + 0.00887 + ], + [ + 0.0, + 0.0, + -0.09871 + ], + [ + -0.0, + 0.0, + 0.09053 + ], + [ + 0.0, + -0.0, + -0.00868 + ], + [ + 0.0, + 0.0, + 0.25154 + ], + [ + -0.0, + 0.0, + -0.22614 + ], + [ + -0.40951, + -0.21673, + 0.12035 + ], + [ + 0.40951, + 0.21673, + 0.12035 + ], + [ + -0.38405, + 0.21559, + -0.10303 + ], + [ + 0.38405, + -0.21559, + -0.10303 + ] + ], + [ + [ + -0.02543, + 0.00344, + -0.0 + ], + [ + 0.04893, + 0.13177, + -0.0 + ], + [ + 0.00883, + -0.13705, + 0.0 + ], + [ + -0.10674, + -0.00362, + 0.0 + ], + [ + 0.56453, + 0.21566, + 0.0 + ], + [ + -0.31827, + 0.27153, + 0.0 + ], + [ + -0.03713, + -0.17876, + -0.03584 + ], + [ + -0.03713, + -0.17876, + 0.03584 + ], + [ + 0.40768, + -0.03918, + -0.04678 + ], + [ + 0.40768, + -0.03918, + 0.04678 + ] + ], + [ + [ + 0.00231, + 0.10928, + 0.0 + ], + [ + 0.05685, + -0.13378, + 0.0 + ], + [ + -0.0474, + -0.11294, + 0.0 + ], + [ + -0.01233, + 0.04506, + -0.0 + ], + [ + -0.52142, + -0.21973, + -0.0 + ], + [ + -0.35028, + 0.26893, + -0.0 + ], + [ + 0.12207, + 0.30561, + 0.08598 + ], + [ + 0.12207, + 0.30561, + -0.08598 + ], + [ + 0.31262, + 0.00395, + -0.06195 + ], + [ + 0.31262, + 0.00395, + 0.06195 + ] + ], + [ + [ + 0.0, + 0.0, + -0.03972 + ], + [ + 0.0, + -0.0, + -0.12919 + ], + [ + -0.0, + -0.0, + -0.13327 + ], + [ + -0.0, + 0.0, + 0.23053 + ], + [ + -0.0, + -0.0, + 0.30264 + ], + [ + -0.0, + 0.0, + 0.29357 + ], + [ + -0.38597, + -0.13219, + 0.10483 + ], + [ + 0.38597, + 0.13219, + 0.10483 + ], + [ + 0.32467, + -0.27049, + 0.10253 + ], + [ + -0.32467, + 0.27049, + 0.10253 + ] + ], + [ + [ + -0.05861, + 0.00441, + 0.0 + ], + [ + -0.09528, + 0.03471, + -0.0 + ], + [ + -0.1014, + -0.05875, + -0.0 + ], + [ + 0.35947, + 0.01218, + 0.0 + ], + [ + -0.05156, + 0.02043, + -0.0 + ], + [ + -0.48655, + 0.41366, + 0.0 + ], + [ + -0.1898, + -0.35118, + -0.05827 + ], + [ + -0.1898, + -0.35118, + 0.05827 + ], + [ + -0.04587, + 0.16973, + -0.14986 + ], + [ + -0.04587, + 0.16973, + 0.14986 + ] + ], + [ + [ + -0.00439, + -0.00481, + 0.0 + ], + [ + 0.07082, + 0.03751, + -0.0 + ], + [ + -0.09921, + 0.06613, + -0.0 + ], + [ + 0.03222, + -0.00465, + -0.0 + ], + [ + -0.29571, + -0.02474, + 0.0 + ], + [ + 0.18936, + -0.28673, + 0.0 + ], + [ + -0.30023, + -0.18173, + 0.17634 + ], + [ + -0.30023, + -0.18173, + -0.17634 + ], + [ + 0.36539, + -0.21413, + 0.22901 + ], + [ + 0.36539, + -0.21413, + -0.22901 + ] + ], + [ + [ + -0.00779, + 0.00576, + 0.0 + ], + [ + -0.11716, + -0.03627, + -0.0 + ], + [ + -0.09425, + 0.04279, + -0.0 + ], + [ + 0.0643, + 0.00246, + -0.0 + ], + [ + 0.3148, + 0.03143, + 0.0 + ], + [ + 0.12276, + -0.2196, + 0.0 + ], + [ + 0.40876, + 0.12013, + -0.29765 + ], + [ + 0.40876, + 0.12013, + 0.29765 + ], + [ + 0.31078, + -0.12524, + 0.14469 + ], + [ + 0.31078, + -0.12524, + -0.14469 + ] + ], + [ + [ + -0.00225, + 0.02567, + 0.0 + ], + [ + 0.00032, + 0.01345, + 0.0 + ], + [ + 0.05318, + 0.02485, + -0.0 + ], + [ + -0.0044, + -0.01066, + -0.0 + ], + [ + -0.12087, + -0.0107, + -0.0 + ], + [ + -0.25162, + 0.38711, + 0.0 + ], + [ + 0.09384, + -0.09757, + -0.09518 + ], + [ + 0.09384, + -0.09757, + 0.09518 + ], + [ + -0.18232, + -0.45896, + 0.33551 + ], + [ + -0.18232, + -0.45896, + -0.33551 + ] + ], + [ + [ + 0.0, + 0.0, + -0.00184 + ], + [ + 0.0, + 0.0, + 0.03665 + ], + [ + 0.0, + -0.0, + -0.04916 + ], + [ + -0.0, + -0.0, + -0.00354 + ], + [ + -0.0, + -0.0, + -0.41631 + ], + [ + 0.0, + -0.0, + 0.61037 + ], + [ + -0.02964, + -0.25889, + -0.03198 + ], + [ + 0.02964, + 0.25889, + -0.03198 + ], + [ + -0.36575, + -0.14298, + 0.04512 + ], + [ + 0.36575, + 0.14298, + 0.04512 + ] + ], + [ + [ + 0.0084, + 0.00642, + -0.0 + ], + [ + 0.0268, + 0.06144, + 0.0 + ], + [ + 0.0037, + -0.01404, + 0.0 + ], + [ + -0.05267, + -0.0022, + 0.0 + ], + [ + -0.53658, + -0.04001, + -0.0 + ], + [ + 0.07425, + -0.09481, + -0.0 + ], + [ + 0.27006, + -0.38888, + -0.29869 + ], + [ + 0.27006, + -0.38888, + 0.29869 + ], + [ + 0.02654, + 0.13597, + -0.1078 + ], + [ + 0.02654, + 0.13597, + 0.1078 + ] + ], + [ + [ + -0.0, + -0.0, + -0.00538 + ], + [ + -0.0, + -0.0, + 0.03728 + ], + [ + -0.0, + 0.0, + 0.02593 + ], + [ + 0.0, + 0.0, + 0.03713 + ], + [ + 0.0, + 0.0, + -0.58904 + ], + [ + -0.0, + 0.0, + -0.39737 + ], + [ + -0.09009, + -0.4006, + -0.03534 + ], + [ + 0.09009, + 0.4006, + -0.03534 + ], + [ + 0.26176, + 0.08217, + -0.02664 + ], + [ + -0.26176, + -0.08217, + -0.02664 + ] + ], + [ + [ + 0.01356, + -0.4884, + 0.0 + ], + [ + 0.004, + -0.04364, + 0.0 + ], + [ + 0.00794, + -0.04548, + -0.0 + ], + [ + -0.02486, + 0.74626, + -0.0 + ], + [ + -0.2215, + -0.07131, + -0.0 + ], + [ + -0.15757, + 0.20068, + 0.0 + ], + [ + 0.07178, + 0.02997, + -0.03159 + ], + [ + 0.07178, + 0.02997, + 0.03159 + ], + [ + 0.08715, + -0.13378, + 0.08768 + ], + [ + 0.08715, + -0.13378, + -0.08768 + ] + ], + [ + [ + -0.0002, + -0.00069, + 0.0 + ], + [ + -0.00495, + -0.00297, + 0.0 + ], + [ + -0.0318, + 0.04186, + -0.0 + ], + [ + 0.00191, + 0.00044, + -0.0 + ], + [ + -0.01165, + 0.0692, + -0.0 + ], + [ + 0.30746, + 0.25797, + 0.0 + ], + [ + 0.03293, + -0.0169, + 0.05137 + ], + [ + 0.03293, + -0.0169, + -0.05137 + ], + [ + 0.02841, + -0.37552, + -0.51939 + ], + [ + 0.02841, + -0.37552, + 0.51939 + ] + ], + [ + [ + 0.00012, + -0.00042, + 0.0 + ], + [ + 0.04679, + 0.01958, + 0.0 + ], + [ + -0.00371, + 0.00491, + 0.0 + ], + [ + -0.00149, + -0.00064, + 0.0 + ], + [ + 0.09064, + -0.52493, + 0.0 + ], + [ + 0.03743, + 0.02953, + -0.0 + ], + [ + -0.31537, + 0.15136, + -0.47757 + ], + [ + -0.31537, + 0.15136, + 0.47757 + ], + [ + 0.00263, + -0.04245, + -0.05854 + ], + [ + 0.00263, + -0.04245, + 0.05854 + ] + ], + [ + [ + -0.0, + 0.0, + 0.00024 + ], + [ + -0.0, + -0.0, + -0.00123 + ], + [ + -0.0, + -0.0, + 0.09178 + ], + [ + 0.0, + -0.0, + 0.00054 + ], + [ + -0.0, + 0.0, + 0.00043 + ], + [ + 0.0, + 0.0, + 0.01295 + ], + [ + 0.00389, + -0.00117, + 0.00643 + ], + [ + -0.00389, + 0.00117, + 0.00643 + ], + [ + 0.03485, + -0.42824, + -0.55771 + ], + [ + -0.03485, + 0.42824, + -0.55771 + ] + ], + [ + [ + -0.0, + -0.0, + 0.00025 + ], + [ + 0.0, + -0.0, + -0.09206 + ], + [ + 0.0, + 0.0, + -0.00116 + ], + [ + 0.0, + 0.0, + -0.00087 + ], + [ + -0.0, + 0.0, + -0.0121 + ], + [ + -0.0, + -0.0, + -7e-05 + ], + [ + 0.38866, + -0.17999, + 0.55873 + ], + [ + -0.38866, + 0.17999, + 0.55873 + ], + [ + -0.00119, + 0.00461, + 0.00598 + ], + [ + 0.00119, + -0.00461, + 0.00598 + ] + ], + [ + [ + 0.00033, + -0.00036, + 0.0 + ], + [ + -0.04367, + 0.08379, + -0.0 + ], + [ + -0.00391, + -0.00472, + 0.0 + ], + [ + -0.00183, + 0.00073, + -0.0 + ], + [ + 0.13433, + -0.82891, + -0.0 + ], + [ + 0.0499, + 0.04004, + 0.0 + ], + [ + 0.19923, + -0.08421, + 0.30662 + ], + [ + 0.19923, + -0.08421, + -0.30662 + ], + [ + 0.00035, + 0.00605, + 0.00808 + ], + [ + 0.00035, + 0.00605, + -0.00808 + ] + ], + [ + [ + 0.00018, + 0.00109, + -0.0 + ], + [ + 0.00303, + -0.00518, + 0.0 + ], + [ + -0.05688, + -0.07396, + -0.0 + ], + [ + -0.00014, + -0.00276, + 0.0 + ], + [ + -0.00695, + 0.05536, + 0.0 + ], + [ + 0.70907, + 0.57724, + -0.0 + ], + [ + -0.01273, + 0.00553, + -0.0183 + ], + [ + -0.01273, + 0.00553, + 0.0183 + ], + [ + -0.01808, + 0.15752, + 0.22453 + ], + [ + -0.01808, + 0.15752, + -0.22453 + ] + ] + ], + "reduced_masses": [ + 1.073, + 2.89, + 4.538, + 4.529, + 4.193, + 3.408, + 7.394, + 1.055, + 2.18, + 2.027, + 3.434, + 3.328, + 1.207, + 1.568, + 1.609, + 1.995, + 2.747, + 1.247, + 1.338, + 1.059, + 1.05, + 1.092, + 1.046, + 10.766, + 1.039, + 1.037, + 1.101, + 1.101, + 1.107, + 1.104 + ], + "energies": { + "zpve": 0.0807347, + "scf": -193.0049629, + "total": -192.9242282 + } + } + }, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/dscf.log b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/dscf.log new file mode 100644 index 0000000..d822513 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/dscf.log @@ -0,0 +1,422 @@ + + dscf (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:18:24.476 + + + + d s c f - program + + idea & directorship : reinhart ahlrichs + program development : marco haeser + michael baer + dft version : oliver treutler + + + quantum chemistry group + universitaet karlsruhe + germany + + + + *-----------------------------------------------------------------------* + | program will use 1 thread(s) | + *-----------------------------------------------------------------------* + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.04340035 -2.43303953 0.00000000 o 8.000 0 + 2.40289845 1.33092842 0.00000000 c 6.000 0 + -2.44869437 1.25914649 0.00000000 c 6.000 0 + -0.00810063 -0.18289217 0.00000000 c 6.000 0 + 2.09020694 3.35088178 0.00000000 h 1.000 0 + -4.02779836 -0.02916167 0.00000000 h 1.000 0 + 3.51545227 0.83515949 1.64389798 h 1.000 0 + 3.51545227 0.83515949 -1.64389798 h 1.000 0 + -2.56998075 2.47145950 1.64993688 h 1.000 0 + -2.56998075 2.47145950 -1.64993688 h 1.000 0 + + center of nuclear mass : -0.00000000 -0.00000000 0.00000000 + center of nuclear charge: -0.00071328 0.15355432 0.00000000 + + ************************************************************************* + dscf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 34 19 def-TZVP [5s3p1d|11s6p1d] + c 3 34 19 def-TZVP [5s3p1d|11s6p1d] + h 6 8 6 def-TZVP [3s1p|5s1p] + --------------------------------------------------------------------------- + total: 10 184 112 + --------------------------------------------------------------------------- + + total number of primitive shells : 42 + total number of contracted shells : 60 + total number of cartesian basis functions : 116 + total number of SCF-basis functions : 112 + + + integral neglect threshold : 0.29E-10 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + symmetry group of the molecule : c1 + + the group has the following generators : + c1(z) + + 1 symmetry operations found + + there are 1 real representations : a + + maximum number of shells which are related by symmetry : 1 + + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 10 + partition function : becke + partition sharpness : 3 + + + ------------------------ + nuclear repulsion energy : 120.594341137 + ------------------------ + + _________________________________ + | | + | DFTD3 V3.1 Rev 0 | + | S.Grimme, University Bonn | + | June 2014 | + | see standalone version | + | dftd3 -h for options | + |_________________________________| + + Please cite DFT-D3 work done with this code as: + S. Grimme, J. Antony, S. Ehrlich and H. Krieg, + J. Chem. Phys, 132 (2010), 154104. + If used with BJ-damping cite also + S. Grimme, S. Ehrlich and L. Goerigk, + J. Comput. Chem. 32 (2011), 1456-1465 + For DFT-D2 the reference is + S. Grimme, J. Comput. Chem., 27 (2006), 1787-1799 + +C6 coefficients used: + 2 C6 for element 1 +Z= 1 CN= 0.912 C6(AA)= 3.03 +Z= 1 CN= 0.000 C6(AA)= 7.59 + 5 C6 for element 6 +Z= 6 CN= 0.000 C6(AA)= 49.11 +Z= 6 CN= 0.987 C6(AA)= 43.25 +Z= 6 CN= 1.998 C6(AA)= 29.36 +Z= 6 CN= 2.999 C6(AA)= 25.78 +Z= 6 CN= 3.984 C6(AA)= 18.21 + 3 C6 for element 8 +Z= 8 CN= 0.000 C6(AA)= 15.51 +Z= 8 CN= 0.993 C6(AA)= 12.82 +Z= 8 CN= 1.989 C6(AA)= 10.37 + +# XYZ [au] R0(AA) [Ang.] CN C6(AA) C8(AA) C10(AA) [au] + 1 0.04340 -2.43304 0.00000 o 1.241 1.060 12.8 257.6 6366.9 + 2 2.40290 1.33093 0.00000 c 1.455 4.035 18.3 529.2 18748.5 + 3 -2.44869 1.25915 0.00000 c 1.455 4.035 18.3 529.2 18749.0 + 4 -0.00810 -0.18289 0.00000 c 1.455 3.019 25.6 741.5 26269.1 + 5 2.09021 3.35088 0.00000 h 1.091 0.999 3.1 37.4 553.3 + 6 -4.02780 -0.02916 0.00000 h 1.091 1.000 3.1 37.4 553.2 + 7 3.51545 0.83516 1.64390 h 1.091 1.000 3.1 37.4 553.2 + 8 3.51545 0.83516 -1.64390 h 1.091 1.000 3.1 37.4 553.2 + 9 -2.56998 2.47146 1.64994 h 1.091 0.999 3.1 37.4 553.3 + 10 -2.56998 2.47146 -1.64994 h 1.091 0.999 3.1 37.4 553.3 + +molecular C6(AA) [au] = 764.02 + + DFT-D V3 + DF b-p + parameters + s6 : 1.0000 + s8 : 1.6830 + rs6 : 1.1390 + rs18 : 1.0000 + alpha6 : 14.0000 + alpha8 : 16.0000 + k1-k3 : 16.0000 1.3333 -4.0000 + + Edisp /kcal,au: -3.1494 -0.00501893 + + E6 /kcal : -0.9162 + E8 /kcal : -2.2332 + % E8 : 70.91 + nuclear repulsion energy = 120.594341137 + DFT-D3 Energy contribution = -0.005018931 + nuclear repulsion + dispersion correction = 120.589322206 + + + ----------------- + -S,T+V- integrals + ----------------- + + 1e-integrals will be neglected if expon. factor < 0.288100E-11 + + Difference densities algorithm switched on. + The maximal number of linear combinations of + difference densities is 20 . + + DIIS switched on: error vector is FDS-SDF + Max. Iterations for DIIS is : 4 + DIIS matrix (see manual) + Scaling factor of diagonals : 1.200 + threshold for scaling factor : 0.000 + + scf convergence criterion : increment of total energy < .1000000D-06 + and increment of one-electron energy < .1000000D-03 + + MOs are in ASCII format ! + + + mo occupation : + irrep mo's occupied + a 112 16 + + number of basis functions : 112 + number of occupied orbitals : 16 + + + reading orbital data $scfmo from file mos + orbital characterization : expanded + virtual MOs provided and orthogonalized by Cholesky decomposition + + automatic virtual orbital shift switched on + shift if e(lumo)-e(homo) < 0.10000000 + + + DSCF restart information will be dumped onto file mos + + Overall gridpoints after grid construction = 12185 + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 1 -192.29372813940 -494.75874322 181.87569287 0.000D+00 0.287D-10 + Exc = -26.721881363698 N = 32.002584624 + max. resid. norm for Fia-block= 3.728D-01 for orbital 8a + max. resid. fock norm = 1.227D+01 for orbital 75a + Delta Eig. = 870.9038860943 eV + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 2 -193.04589993537 -499.77769458 186.14247243 0.137D+01 0.202D-10 + Exc = -27.000695043509 N = 32.001771983 + Norm of current diis error: 1.7490 + max. resid. norm for Fia-block= 1.505D-01 for orbital 16a + max. resid. fock norm = 3.161D-01 for orbital 99a + Delta Eig. = 193.1107856451 eV + + current damping : 0.150 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 3 -193.19817618491 -500.51578903 186.72829064 0.669D+00 0.169D-10 + Exc = -27.297609549415 N = 32.001661927 + Norm of current diis error: 0.72489 + max. resid. norm for Fia-block= 5.937D-02 for orbital 15a + max. resid. fock norm = 6.099D-02 for orbital 16a + Delta Eig. = 49.9499767069 eV + + current damping : 0.200 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 4 -193.22274837497 -498.75040051 184.93832993 0.847D+00 0.135D-10 + Exc = -27.050501405271 N = 32.001617337 + Norm of current diis error: 0.42508 + max. resid. norm for Fia-block= 2.353D-02 for orbital 15a + max. resid. fock norm = 2.979D-02 for orbital 91a + Delta Eig. = 3.4742688100 eV + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 5 -193.23564133922 -499.97756705 186.15260351 0.950D-01 0.137D-10 + Exc = -27.180097912811 N = 32.001620773 + Norm of current diis error: 0.66339E-01 + max. resid. norm for Fia-block= 3.893D-03 for orbital 8a + max. resid. fock norm = 6.203D-03 for orbital 8a + mo-orthogonalization: Cholesky decomposition + Delta Eig. = 1.2057965971 eV + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 6 -193.23594867389 -499.71496743 185.88969655 0.193D-01 0.131D-10 + Exc = -27.160531263094 N = 32.001617033 + Norm of current diis error: 0.16367E-01 + max. resid. norm for Fia-block= 1.080D-03 for orbital 16a + max. resid. fock norm = 2.496D-03 for orbital 111a + Delta Eig. = 0.0877877295 eV + + current damping : 0.350 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 7 -193.23596716585 -499.75469533 185.92940596 0.345D-02 0.128D-10 + Exc = -27.163504787884 N = 32.001617866 + Norm of current diis error: 0.57536E-02 + max. resid. norm for Fia-block= 2.956D-04 for orbital 6a + max. resid. fock norm = 8.715D-04 for orbital 111a + Delta Eig. = 0.0424942420 eV + + current damping : 0.200 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 8 -193.23596906936 -499.76218306 185.93689179 0.104D-02 0.126D-10 + Exc = -27.164271605118 N = 32.001617145 + Norm of current diis error: 0.12506E-02 + max. resid. norm for Fia-block= 1.609D-04 for orbital 15a + max. resid. fock norm = 2.123D-04 for orbital 13a + Delta Eig. = 0.0096885711 eV + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 9 -193.23596880104 -499.76329674 185.93800574 0.426D-03 0.124D-10 + Exc = -27.164573197448 N = 32.001617388 + Norm of current diis error: 0.23770E-02 + max. resid. norm for Fia-block= 7.884D-05 for orbital 15a + max. resid. fock norm = 9.029D-05 for orbital 17a + Delta Eig. = 0.0071682814 eV + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 10 -193.23596915118 -499.76233479 185.93704343 0.906D-04 0.121D-10 + Exc = -27.164347902922 N = 32.001617315 + Norm of current diis error: 0.69849E-03 + max. resid. norm for Fia-block= 3.126D-05 for orbital 15a + max. resid. fock norm = 3.955D-05 for orbital 13a + mo-orthogonalization: Cholesky decomposition + Delta Eig. = 0.0018524315 eV + + ENERGY CONVERGED ! + + Evaluating v_xc on big grid + Overall gridpoints after grid construction = 46350 + + current damping : 0.350 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 11 -193.23564839525 -499.76214817 185.93717756 0.244D-04 0.118D-10 + Exc = -27.163971923866 N = 32.000005445 + max. resid. norm for Fia-block= 9.105D-06 for orbital 15a + max. resid. fock norm = 1.285D-05 for orbital 13a + + convergence criteria satisfied after 11 iterations + + + ************************************************************************* + dscf + ************************************************************************* + + + ------------------------------------------ + | total energy = -193.23564839525 | + ------------------------------------------ + : kinetic energy = 192.64177839562 : + : potential energy = -385.87742679087 : + : virial theorem = 1.99692670579 : + : wavefunction norm = 1.00000000000 : + .......................................... + + + : there is no data group $energy + + + : $end is missing + + + orbitals $scfmo will be written to file mos + + irrep 12a 13a 14a 15a 16a + eigenvalues H -0.37054 -0.35780 -0.34160 -0.31956 -0.20993 + eV -10.0830 -9.7363 -9.2955 -8.6958 -5.7126 + occupation 2.0000 2.0000 2.0000 2.0000 2.0000 + + irrep 17a 18a 19a 20a 21a + eigenvalues H -0.05640 0.01758 0.06564 0.08278 0.08361 + eV -1.5347 0.4783 1.7861 2.2526 2.2752 + + + + + ============================================================================== + electrostatic moments + ============================================================================== + + reference point for electrostatic moments: 0.00000 0.00000 0.00000 + + + nuc elec -> total + ------------------------------------------------------------------------------ + charge + ------------------------------------------------------------------------------ + 32.000000 -32.000000 0.000000 + + ------------------------------------------------------------------------------ + dipole moment + ------------------------------------------------------------------------------ + x -0.022825 0.024067 0.001242 + y 4.913738 -3.815618 1.098120 + z 0.000000 -0.000000 -0.000000 + + | dipole moment | = 1.0981 a.u. = 2.7911 debye + + ------------------------------------------------------------------------------ + quadrupole moment + ------------------------------------------------------------------------------ + xx 129.154149 -146.718374 -17.564225 + yy 92.539536 -113.844634 -21.305098 + zz 10.849385 -28.814861 -17.965477 + xy 0.143270 -0.170054 -0.026784 + xz 0.000000 0.000000 0.000000 + yz 0.000000 -0.000000 -0.000000 + + 1/3 trace= -18.944933 + anisotropy= 3.557563 + + ============================================================================== + +HOMO-LUMO Separation + HOMO : -0.20993098 H = -5.71252 eV + LUMO : -0.05639881 H = -1.53469 eV + HOMO-LUMO gap: 0.15353216 H = +4.17783 eV + + ============================================================================== + + + ------------------------------------------------------------------------ + total cpu-time : 9.25 seconds + total wall-time : 11.46 seconds + ------------------------------------------------------------------------ + + **** dscf : all done **** + + + 2023-01-25 00:18:35.889 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/ref_output.json new file mode 100644 index 0000000..d0829fe --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/ref_output.json @@ -0,0 +1,364 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "ScfOutput", + "@version": "1.3.0", + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": null, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": { + "@module": "turbomoleio.output.data", + "@class": "DispersionCorrectionData", + "@version": "1.3.0", + "correction": "D3", + "en_corr": -0.005018931 + } + }, + "scf": { + "@module": "turbomoleio.output.data", + "@class": "ScfData", + "@version": "1.3.0", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "ScfIterationData", + "@version": "1.3.0", + "energies": [ + -192.2937281394, + -193.04589993537, + -193.19817618491, + -193.22274837497, + -193.23564133922, + -193.23594867389, + -193.23596716585, + -193.23596906936, + -193.23596880104, + -193.23596915118, + -193.23564839525 + ], + "first_index": 1, + "n_steps": 11, + "dampings": [ + 0.3, + 0.25, + 0.15, + 0.2, + 0.25, + 0.3, + 0.35, + 0.2, + 0.25, + 0.3, + 0.35 + ], + "converged": true + }, + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": true, + "virtual_orbital_shift_limit": 0.1, + "orbital_characterization": "expanded", + "restart_file": "mos", + "n_occupied_orbitals": 16 + }, + "energies": { + "@module": "turbomoleio.output.data", + "@class": "ScfEnergiesData", + "@version": "1.3.0", + "total_energy": -193.23564839525, + "kinetic_energy": 192.64177839562, + "potential_energy": -385.87742679087, + "virial_theorem": 1.99692670579, + "wavefunction_norm": 1.0, + "coulomb_energy": null, + "xc_energy": null, + "ts_energy": null, + "free_energy": null, + "sigma0_energy": null + }, + "electrostatic": { + "@module": "turbomoleio.output.data", + "@class": "ElectrostaticMomentsData", + "@version": "1.3.0", + "charge": 0.0, + "unrestricted_electrons": null, + "dipole_vector": [ + 0.001242, + 1.09812, + -0.0 + ], + "dipole_norm": 1.0981, + "quadrupole_tensor": [ + [ + -17.564225, + -0.026784, + 0.0 + ], + [ + -0.026784, + -21.305098, + -0.0 + ], + [ + 0.0, + -0.0, + -17.965477 + ] + ], + "quadrupole_trace": -56.834799, + "quadrupole_anisotropy": 3.557563 + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + -0.0, + -0.0, + 0.0 + ], + "center_of_charge": [ + -0.00071328, + 0.15355432, + 0.0 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "O", + "species": [ + { + "element": "O", + "occu": 1 + } + ], + "xyz": [ + 0.022966476165214012, + -1.2875090725021459, + 0.0 + ], + "properties": {} + }, + { + "name": "C", + "species": [ + { + "element": "C", + "occu": 1 + } + ], + "xyz": [ + 1.2715590998541417, + 0.7042969892071365, + 0.0 + ], + "properties": {} + }, + { + "name": "C", + "species": [ + { + "element": "C", + "occu": 1 + } + ], + "xyz": [ + -1.2957932570704787, + 0.6663116276965021, + 0.0 + ], + "properties": {} + }, + { + "name": "C", + "species": [ + { + "element": "C", + "occu": 1 + } + ], + "xyz": [ + -0.004286668789957168, + -0.09678236841659732, + 0.0 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 1.106089878719294, + 1.7732102744060798, + 0.0 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -2.1314191022244775, + -0.015431691195873688, + 0.0 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 1.86029722730122, + 0.4419473695773719, + 0.8699133480654756 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 1.86029722730122, + 0.4419473695773719, + -0.8699133480654756 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -1.3599752453594, + 1.3078400450697227, + 0.8731089963243978 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -1.3599752453594, + 1.3078400450697227, + -0.8731089963243978 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "o": "def-TZVP", + "c": "def-TZVP", + "h": "def-TZVP" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 112, + "number_scf_aux_basis_func": null + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:24.476000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:35.889000" + }, + "cpu_time": 9.25, + "wall_time": 11.46 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "dscf" + }, + "cosmo": null, + "spin": { + "@module": "turbomoleio.output.data", + "@class": "SpinData", + "@version": "1.3.0", + "unrestricted": false, + "s2": null + }, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 2.9e-11, + "thize": 1e-05, + "thime": 5 + }, + "smearing": null, + "symmetry": { + "@module": "turbomoleio.output.data", + "@class": "SymmetryData", + "@version": "1.3.0", + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + }, + "periodicity": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/ref_parser.json new file mode 100644 index 0000000..d64d341 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/aceton_dftd3_tzvp/ref_parser.json @@ -0,0 +1,265 @@ +{ + "all_done": true, + "header": { + "executable": "dscf", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:24.476000" + } + }, + "centers": { + "center_of_mass": [ + -0.0, + -0.0, + 0.0 + ], + "center_of_charge": [ + -0.00071328, + 0.15355432, + 0.0 + ] + }, + "coordinates": { + "coords": [ + [ + 0.04340035, + -2.43303953, + 0.0 + ], + [ + 2.40289845, + 1.33092842, + 0.0 + ], + [ + -2.44869437, + 1.25914649, + 0.0 + ], + [ + -0.00810063, + -0.18289217, + 0.0 + ], + [ + 2.09020694, + 3.35088178, + 0.0 + ], + [ + -4.02779836, + -0.02916167, + 0.0 + ], + [ + 3.51545227, + 0.83515949, + 1.64389798 + ], + [ + 3.51545227, + 0.83515949, + -1.64389798 + ], + [ + -2.56998075, + 2.4714595, + 1.64993688 + ], + [ + -2.56998075, + 2.4714595, + -1.64993688 + ] + ], + "species": [ + "o", + "c", + "c", + "c", + "h", + "h", + "h", + "h", + "h", + "h" + ], + "charges": [ + 8.0, + 6.0, + 6.0, + 6.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "o": "def-TZVP", + "c": "def-TZVP", + "h": "def-TZVP" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 112, + "number_scf_aux_basis_func": null + }, + "symmetry": { + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": { + "correction": "D3", + "en_corr": -0.005018931 + }, + "pre_scf_run": { + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": true, + "virtual_orbital_shift_limit": 0.1, + "orbital_characterization": "expanded", + "restart_file": "mos", + "n_occupied_orbitals": 16 + }, + "scf_iterations": { + "energies": [ + -192.2937281394, + -193.04589993537, + -193.19817618491, + -193.22274837497, + -193.23564133922, + -193.23594867389, + -193.23596716585, + -193.23596906936, + -193.23596880104, + -193.23596915118, + -193.23564839525 + ], + "first_index": 1, + "n_steps": 11, + "dampings": [ + 0.3, + 0.25, + 0.15, + 0.2, + 0.25, + 0.3, + 0.35, + 0.2, + 0.25, + 0.3, + 0.35 + ], + "converged": true + }, + "scf_energies": { + "total_energy": -193.23564839525, + "kinetic_energy": 192.64177839562, + "potential_energy": -385.87742679087, + "virial_theorem": 1.99692670579, + "wavefunction_norm": 1.0 + }, + "cosmo_results": null, + "electrostatic_moments": { + "unrestricted_electrons": null, + "charge": 0.0, + "dipole": { + "norm": 1.0981, + "moment": [ + 0.001242, + 1.09812, + -0.0 + ] + }, + "quadrupole": { + "trace": -56.834799, + "anisotropy": 3.557563, + "moment": [ + [ + -17.564225, + -0.026784, + 0.0 + ], + [ + -0.026784, + -21.305098, + -0.0 + ], + [ + 0.0, + -0.0, + -17.965477 + ] + ] + } + }, + "timings": { + "cpu_time": 9.25, + "wall_time": 11.46, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:35.889000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 2.9e-11, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": null, + "escf_iterations": null, + "escf_gs_total_en": null, + "escf_excitations": null, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/dscf.log b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/dscf.log new file mode 100644 index 0000000..171e5fe --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/dscf.log @@ -0,0 +1,337 @@ + + dscf (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:18:40.142 + + + + d s c f - program + + idea & directorship : reinhart ahlrichs + program development : marco haeser + michael baer + dft version : oliver treutler + + + quantum chemistry group + universitaet karlsruhe + germany + + + + *-----------------------------------------------------------------------* + | program will use 1 thread(s) | + *-----------------------------------------------------------------------* + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 -0.72557892 o 8.000 0 + 1.41713421 0.00000000 0.36278946 h 1.000 0 + -1.41713421 0.00000000 0.36278946 h 1.000 0 + + center of nuclear mass : 0.00000000 0.00000000 -0.60378908 + center of nuclear charge: 0.00000000 0.00000000 -0.50790525 + + ************************************************************************* + dscf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 2 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 3 32 18 + --------------------------------------------------------------------------- + + total number of primitive shells : 16 + total number of contracted shells : 10 + total number of cartesian basis functions : 19 + total number of SCF-basis functions : 18 + + + integral neglect threshold : 0.18E-09 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + symmetry group of the molecule : c2v + + the group has the following generators : + c2(z) + mirror plane sigma(xz) + + 4 symmetry operations found + + there are 4 real representations : a1 a2 b1 b2 + + maximum number of shells which are related by symmetry : 2 + + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 2 + partition function : becke + partition sharpness : 3 + + + ------------------------ + nuclear repulsion energy : 9.30715477358 + ------------------------ + + + ----------------- + -S,T+V- integrals + ----------------- + + 1e-integrals will be neglected if expon. factor < 0.175893E-10 + + Difference densities algorithm switched on. + The maximal number of linear combinations of + difference densities is 20 . + + DIIS switched on: error vector is FDS-SDF + Max. Iterations for DIIS is : 4 + DIIS matrix (see manual) + Scaling factor of diagonals : 1.200 + threshold for scaling factor : 0.000 + + scf convergence criterion : increment of total energy < .1000000D-06 + and increment of one-electron energy < .1000000D-03 + + MOs are in ASCII format ! + + + mo occupation : + irrep mo's occupied + a1 9 3 + a2 1 0 + b1 5 1 + b2 3 1 + + number of basis functions : 18 + number of occupied orbitals : 5 + + + reading orbital data $scfmo from file mos + orbital characterization : expanded + virtual MOs provided and orthogonalized by Cholesky decomposition + + automatic virtual orbital shift switched on + shift if e(lumo)-e(homo) < 0.10000000 + + + DSCF restart information will be dumped onto file mos + + Overall gridpoints after grid construction = 1098 + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 1 -76.143808666909 -124.43866883 38.987705388 0.000D+00 0.175D-09 + Exc = -9.503661308938 N = 9.9990627195 + max. resid. norm for Fia-block= 2.533D-01 for orbital 3a1 + max. resid. fock norm = 1.169D+00 for orbital 5a1 + Delta Eig. = 47.0795604802 eV + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 2 -76.317603169266 -122.45259042 36.827832480 0.608D+00 0.116D-09 + Exc = -9.237016726629 N = 9.9994270821 + Norm of current diis error: 0.35138 + max. resid. norm for Fia-block= 8.467D-02 for orbital 1b1 + max. resid. fock norm = 9.886D-02 for orbital 4a1 + Delta Eig. = 10.1431637969 eV + + current damping : 0.200 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 3 -76.337404295078 -123.68673977 38.042180702 0.298D+00 0.956D-10 + Exc = -9.425448034189 N = 9.9992826591 + Norm of current diis error: 0.17642 + max. resid. norm for Fia-block= 2.820D-02 for orbital 3a1 + max. resid. fock norm = 2.848D-02 for orbital 3a1 + Delta Eig. = 4.0440013207 eV + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 4 -76.342251381087 -123.12626297 37.476856814 0.705D-01 0.858D-10 + Exc = -9.353129874312 N = 9.9993443737 + Norm of current diis error: 0.42189E-01 + max. resid. norm for Fia-block= 5.383D-03 for orbital 2a1 + max. resid. fock norm = 5.459D-03 for orbital 2a1 + Delta Eig. = 0.2972737513 eV + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 5 -76.342476694949 -123.20950220 37.559870734 0.875D-02 0.815D-10 + Exc = -9.364184193806 N = 9.9993390173 + Norm of current diis error: 0.73937E-02 + max. resid. norm for Fia-block= 9.405D-04 for orbital 1b1 + max. resid. fock norm = 9.405D-04 for orbital 1b1 + mo-orthogonalization: Cholesky decomposition + Delta Eig. = 0.0566919803 eV + + current damping : 0.150 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 6 -76.342484142411 -123.22573147 37.576092557 0.368D-03 0.774D-10 + Exc = -9.366413451126 N = 9.9993373864 + Norm of current diis error: 0.10579E-02 + max. resid. norm for Fia-block= 1.598D-04 for orbital 2a1 + max. resid. fock norm = 1.670D-04 for orbital 4a1 + Delta Eig. = 0.0152574062 eV + + current damping : 0.100 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 7 -76.342484303361 -123.22796150 37.578322418 0.119D-03 0.752D-10 + Exc = -9.366746448968 N = 9.9993372713 + Norm of current diis error: 0.13713E-03 + max. resid. norm for Fia-block= 2.132D-05 for orbital 1b1 + max. resid. fock norm = 2.592D-05 for orbital 3a1 + Delta Eig. = 0.0020598535 eV + + ENERGY CONVERGED ! + + Evaluating v_xc on big grid + Overall gridpoints after grid construction = 3891 + + current damping : 0.150 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 8 -76.342762152503 -123.22820928 37.578292351 0.892D-05 0.732D-10 + Exc = -9.367056564507 N = 9.9999983776 + max. resid. norm for Fia-block= 3.156D-06 for orbital 2a1 + max. resid. fock norm = 3.998D-06 for orbital 2a1 + + convergence criteria satisfied after 8 iterations + + + ************************************************************************* + dscf + ************************************************************************* + + + ------------------------------------------ + | total energy = -76.34276215250 | + ------------------------------------------ + : kinetic energy = 75.98646113665 : + : potential energy = -152.32922328915 : + : virial theorem = 1.99533287759 : + : wavefunction norm = 1.00000000000 : + .......................................... + + + : there is no data group $energy + + + : $end is missing + + + orbitals $scfmo will be written to file mos + + irrep 1a1 2a1 3a1 4a1 5a1 + eigenvalues H -18.75057 -0.90865 -0.30996 0.03391 0.63293 + eV -510.2329 -24.7259 -8.4345 0.9226 17.2231 + occupation 2.0000 2.0000 2.0000 + + irrep 6a1 7a1 8a1 9a1 + eigenvalues H 0.87619 1.10900 2.47780 2.86046 + eV 23.8426 30.1776 67.4250 77.8377 + + irrep 1a2 + eigenvalues H 2.49480 + eV 67.8875 + + irrep 1b1 2b1 3b1 4b1 5b1 + eigenvalues H -0.47816 0.11369 0.54412 1.01988 3.00641 + eV -13.0114 3.0936 14.8065 27.7526 81.8091 + occupation 2.0000 + + irrep 1b2 2b2 3b2 + eigenvalues H -0.23517 0.86116 2.52749 + eV -6.3995 23.4335 68.7769 + occupation 2.0000 + + + + + ============================================================================== + electrostatic moments + ============================================================================== + + reference point for electrostatic moments: 0.00000 0.00000 0.00000 + + + nuc elec -> total + ------------------------------------------------------------------------------ + charge + ------------------------------------------------------------------------------ + 10.000000 -10.000000 -0.000000 + + ------------------------------------------------------------------------------ + dipole moment + ------------------------------------------------------------------------------ + x 0.000000 0.000000 0.000000 + y 0.000000 0.000000 0.000000 + z -5.079052 5.912637 0.833584 + + | dipole moment | = 0.8336 a.u. = 2.1188 debye + + ------------------------------------------------------------------------------ + quadrupole moment + ------------------------------------------------------------------------------ + xx 4.016539 -7.255366 -3.238827 + yy 0.000000 -5.264554 -5.264554 + zz 4.474951 -9.815018 -5.340067 + xy 0.000000 0.000000 0.000000 + xz 0.000000 -0.000000 -0.000000 + yz 0.000000 0.000000 0.000000 + + 1/3 trace= -4.614483 + anisotropy= 2.064519 + + ============================================================================== + +HOMO-LUMO Separation + HOMO : -0.23517482 H = -6.39944 eV + LUMO : 0.03390547 H = +0.92262 eV + HOMO-LUMO gap: 0.26908029 H = +7.32205 eV + + ============================================================================== + + + ------------------------------------------------------------------------ + total cpu-time : 0.14 seconds + total wall-time : 1.19 seconds + ------------------------------------------------------------------------ + + **** dscf : all done **** + + + 2023-01-25 00:18:41.277 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/ref_output.json new file mode 100644 index 0000000..886c458 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/ref_output.json @@ -0,0 +1,249 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "ScfOutput", + "@version": "1.3.0", + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": null, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "scf": { + "@module": "turbomoleio.output.data", + "@class": "ScfData", + "@version": "1.3.0", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "ScfIterationData", + "@version": "1.3.0", + "energies": [ + -76.143808666909, + -76.317603169266, + -76.337404295078, + -76.342251381087, + -76.342476694949, + -76.342484142411, + -76.342484303361, + -76.342762152503 + ], + "first_index": 1, + "n_steps": 8, + "dampings": [ + 0.3, + 0.25, + 0.2, + 0.25, + 0.3, + 0.15, + 0.1, + 0.15 + ], + "converged": true + }, + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": true, + "virtual_orbital_shift_limit": 0.1, + "orbital_characterization": "expanded", + "restart_file": "mos", + "n_occupied_orbitals": 5 + }, + "energies": { + "@module": "turbomoleio.output.data", + "@class": "ScfEnergiesData", + "@version": "1.3.0", + "total_energy": -76.3427621525, + "kinetic_energy": 75.98646113665, + "potential_energy": -152.32922328915, + "virial_theorem": 1.99533287759, + "wavefunction_norm": 1.0, + "coulomb_energy": null, + "xc_energy": null, + "ts_energy": null, + "free_energy": null, + "sigma0_energy": null + }, + "electrostatic": { + "@module": "turbomoleio.output.data", + "@class": "ElectrostaticMomentsData", + "@version": "1.3.0", + "charge": -0.0, + "unrestricted_electrons": null, + "dipole_vector": [ + 0.0, + 0.0, + 0.833584 + ], + "dipole_norm": 0.8336, + "quadrupole_tensor": [ + [ + -3.238827, + 0.0, + -0.0 + ], + [ + 0.0, + -5.264554, + 0.0 + ], + [ + -0.0, + 0.0, + -5.340067 + ] + ], + "quadrupole_trace": -13.843449, + "quadrupole_anisotropy": 2.064519 + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790525 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "O", + "species": [ + { + "element": "O", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + -0.38395982917561094 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 0.7499151287230262, + 0.0, + 0.19197991458780547 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -0.7499151287230262, + 0.0, + 0.19197991458780547 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": null + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:40.142000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:41.277000" + }, + "cpu_time": 0.14, + "wall_time": 1.19 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "dscf" + }, + "cosmo": null, + "spin": { + "@module": "turbomoleio.output.data", + "@class": "SpinData", + "@version": "1.3.0", + "unrestricted": false, + "s2": null + }, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 1.8e-10, + "thize": 1e-05, + "thime": 5 + }, + "smearing": null, + "symmetry": { + "@module": "turbomoleio.output.data", + "@class": "SymmetryData", + "@version": "1.3.0", + "symbol": "c2v", + "n_reps": 4, + "reps": [ + "a1", + "a2", + "b1", + "b2" + ] + }, + "periodicity": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/ref_parser.json new file mode 100644 index 0000000..04d2cb7 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_std/ref_parser.json @@ -0,0 +1,202 @@ +{ + "all_done": true, + "header": { + "executable": "dscf", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:40.142000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790525 + ] + }, + "coordinates": { + "coords": [ + [ + 0.0, + 0.0, + -0.72557892 + ], + [ + 1.41713421, + 0.0, + 0.36278946 + ], + [ + -1.41713421, + 0.0, + 0.36278946 + ] + ], + "species": [ + "o", + "h", + "h" + ], + "charges": [ + 8.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": null + }, + "symmetry": { + "symbol": "c2v", + "n_reps": 4, + "reps": [ + "a1", + "a2", + "b1", + "b2" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": null, + "pre_scf_run": { + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": true, + "virtual_orbital_shift_limit": 0.1, + "orbital_characterization": "expanded", + "restart_file": "mos", + "n_occupied_orbitals": 5 + }, + "scf_iterations": { + "energies": [ + -76.143808666909, + -76.317603169266, + -76.337404295078, + -76.342251381087, + -76.342476694949, + -76.342484142411, + -76.342484303361, + -76.342762152503 + ], + "first_index": 1, + "n_steps": 8, + "dampings": [ + 0.3, + 0.25, + 0.2, + 0.25, + 0.3, + 0.15, + 0.1, + 0.15 + ], + "converged": true + }, + "scf_energies": { + "total_energy": -76.3427621525, + "kinetic_energy": 75.98646113665, + "potential_energy": -152.32922328915, + "virial_theorem": 1.99533287759, + "wavefunction_norm": 1.0 + }, + "cosmo_results": null, + "electrostatic_moments": { + "unrestricted_electrons": null, + "charge": -0.0, + "dipole": { + "norm": 0.8336, + "moment": [ + 0.0, + 0.0, + 0.833584 + ] + }, + "quadrupole": { + "trace": -13.843449, + "anisotropy": 2.064519, + "moment": [ + [ + -3.238827, + 0.0, + -0.0 + ], + [ + 0.0, + -5.264554, + 0.0 + ], + [ + -0.0, + 0.0, + -5.340067 + ] + ] + } + }, + "timings": { + "cpu_time": 0.14, + "wall_time": 1.19, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:41.277000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 1.8e-10, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": null, + "escf_iterations": null, + "escf_gs_total_en": null, + "escf_excitations": null, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/dscf.log b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/dscf.log new file mode 100644 index 0000000..e0d1d23 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/dscf.log @@ -0,0 +1,393 @@ + + dscf (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:18:19.500 + + + + d s c f - program + + idea & directorship : reinhart ahlrichs + program development : marco haeser + michael baer + dft version : oliver treutler + + + quantum chemistry group + universitaet karlsruhe + germany + + + + *-----------------------------------------------------------------------* + | program will use 1 thread(s) | + *-----------------------------------------------------------------------* + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 -0.72557892 o 8.000 0 + 1.41713421 0.00000000 0.36278946 h 1.000 0 + -1.41713421 0.00000000 0.36278946 h 1.000 0 + + center of nuclear mass : 0.00000000 0.00000000 -0.60378908 + center of nuclear charge: 0.00000000 0.00000000 -0.50790525 + + ************************************************************************* + dscf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 2 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 3 32 18 + --------------------------------------------------------------------------- + + total number of primitive shells : 16 + total number of contracted shells : 10 + total number of cartesian basis functions : 19 + total number of SCF-basis functions : 18 + + + integral neglect threshold : 0.18E-09 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + symmetry group of the molecule : c1 + + the group has the following generators : + c1(z) + + 1 symmetry operations found + + there are 1 real representations : a + + maximum number of shells which are related by symmetry : 1 + + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 3 + partition function : becke + partition sharpness : 3 + + + ------------------------ + nuclear repulsion energy : 9.30715477358 + ------------------------ + + + ----------------- + -S,T+V- integrals + ----------------- + + 1e-integrals will be neglected if expon. factor < 0.175893E-10 + + Difference densities algorithm switched on. + The maximal number of linear combinations of + difference densities is 20 . + + DIIS switched on: error vector is FDS-SDF + Max. Iterations for DIIS is : 4 + DIIS matrix (see manual) + Scaling factor of diagonals : 1.200 + threshold for scaling factor : 0.000 + + scf convergence criterion : increment of total energy < .1000000D-06 + and increment of one-electron energy < .1000000D-03 + + MOs are in ASCII format ! + + + mo occupation : + irrep mo's occupied + a 18 5 + + number of basis functions : 18 + number of occupied orbitals : 5 + + + reading orbital data $uhfmo_alpha from file alpha + orbital characterization : expanded + + reading orbital data $uhfmo_beta from file beta + orbital characterization : expanded + virtual MOs provided and orthogonalized by Cholesky decomposition + virtual MOs provided and orthogonalized by Cholesky decomposition + + UHF mode switched on ! + + closed shell shift switched on + all occupied orbitals are shifted by 0.05000 + + + DSCF restart information will be dumped onto file alpha + + Overall gridpoints after grid construction = 3534 + + current damping : 1.000 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 1 -75.709149222343 -117.09679488 32.080490887 0.000D+00 0.175D-09 + Na = 4.9995313597 Nb = 3.9998793207 + Exc = -8.787711297908 N = 8.9994106804 + max. resid. norm for Fia-block= 2.634D-01 for orbital 1a beta + max. resid. fock norm = 1.108D+00 for orbital 9a beta + Delta Eig. = 32.3297071545 eV + + current damping : 0.950 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 2 -75.816081492466 -117.73251083 32.609274567 0.251D+00 0.111D-09 + Na = 4.9995296196 Nb = 3.9998854701 + Exc = -8.886876110109 N = 8.9994150898 + Norm of current diis error: 0.39063 + max. resid. norm for Fia-block= 1.423D-01 for orbital 1a beta + max. resid. fock norm = 1.513D-01 for orbital 6a alpha + Delta Eig. = 15.7769639018 eV + + current damping : 0.800 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 3 -75.857212061739 -117.87977404 32.715407205 0.852D-01 0.798D-10 + Na = 4.9995194543 Nb = 3.9998865583 + Exc = -8.920115837118 N = 8.9994060126 + Norm of current diis error: 0.21374 + max. resid. norm for Fia-block= 7.979D-02 for orbital 3a beta + max. resid. fock norm = 8.121D-02 for orbital 6a alpha + Delta Eig. = 8.1568076473 eV + + current damping : 0.650 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 4 -75.874157090013 -118.00279397 32.821482106 0.240D-01 0.652D-10 + Na = 4.9995055824 Nb = 3.9998842701 + Exc = -8.949606521034 N = 8.9993898525 + Norm of current diis error: 0.10470 + max. resid. norm for Fia-block= 4.111D-02 for orbital 3a beta + max. resid. fock norm = 4.111D-02 for orbital 3a beta + Delta Eig. = 3.8632431380 eV + + current damping : 0.500 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 5 -75.879194045962 -118.06323641 32.876887589 0.533D-02 0.578D-10 + Na = 4.9994965287 Nb = 3.9998828259 + Exc = -8.966289064502 N = 8.9993793546 + Norm of current diis error: 0.44649E-01 + max. resid. norm for Fia-block= 1.817D-02 for orbital 3a beta + max. resid. fock norm = 1.817D-02 for orbital 3a beta + mo-orthogonalization: Cholesky decomposition + Delta Eig. = 1.6437129556 eV + + current damping : 0.350 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 6 -75.880260802113 -118.09662398 32.909208403 0.120D-02 0.539D-10 + Na = 4.9994914995 Nb = 3.9998820931 + Exc = -8.975287379639 N = 8.9993735925 + Norm of current diis error: 0.15732E-01 + max. resid. norm for Fia-block= 6.684D-03 for orbital 3a beta + max. resid. fock norm = 6.684D-03 for orbital 3a beta + Delta Eig. = 0.5952940669 eV + + current damping : 0.200 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 7 -75.880414311673 -118.10215102 32.914581937 0.696D-03 0.519D-10 + Na = 4.9994897077 Nb = 3.9998821182 + Exc = -8.977840271640 N = 8.9993718259 + Norm of current diis error: 0.46809E-02 + max. resid. norm for Fia-block= 2.042D-03 for orbital 3a alpha + max. resid. fock norm = 2.042D-03 for orbital 3a alpha + Delta Eig. = 0.1742466019 eV + + current damping : 0.100 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 8 -75.880428556505 -118.11063937 32.923056043 0.174D-03 0.507D-10 + Na = 4.9994887186 Nb = 3.9998819863 + Exc = -8.979642722323 N = 8.9993707048 + Norm of current diis error: 0.10859E-02 + max. resid. norm for Fia-block= 5.246D-04 for orbital 3a beta + max. resid. fock norm = 5.513D-04 for orbital 9a beta + Delta Eig. = 0.0538966289 eV + + current damping : 0.150 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 9 -75.880429245802 -118.10668070 32.919096683 0.958D-04 0.502D-10 + Na = 4.9994887929 Nb = 3.9998821627 + Exc = -8.979203059403 N = 8.9993709555 + Norm of current diis error: 0.64524E-03 + max. resid. norm for Fia-block= 1.707D-04 for orbital 3a alpha + max. resid. fock norm = 1.707D-04 for orbital 3a alpha + Delta Eig. = 0.0093636153 eV + + current damping : 0.200 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 10 -75.880429377768 -118.10884355 32.921259400 0.113D-04 0.498D-10 + Na = 4.9994886540 Nb = 3.9998821159 + Exc = -8.979531368263 N = 8.9993707700 + Norm of current diis error: 0.52286E-04 + max. resid. norm for Fia-block= 2.360D-05 for orbital 3a alpha + max. resid. fock norm = 2.360D-05 for orbital 3a alpha + mo-orthogonalization: Cholesky decomposition + Delta Eig. = 0.0008385966 eV + + ENERGY CONVERGED ! + + Evaluating v_xc on big grid + Overall gridpoints after grid construction = 13740 + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 11 -75.880560676540 -118.10886446 32.921149013 0.924D-04 0.500D-10 + Na = 4.9999989013 Nb = 3.9999995964 + Exc = -8.979668978887 N = 8.9999984977 + max. resid. norm for Fia-block= 8.321D-06 for orbital 3a beta + max. resid. fock norm = 8.321D-06 for orbital 3a beta + + convergence criteria satisfied after 11 iterations + + + ************************************************************************* + dscf + ************************************************************************* + + + ------------------------------------------ + | total energy = -75.88056067654 | + ------------------------------------------ + : kinetic energy = 75.74900599616 : + : potential energy = -151.62956667270 : + : virial theorem = 1.99826629272 : + : wavefunction norm = 1.00000000000 : + .......................................... + + + : there is no data group $energy + + + : $end is missing + + + orbitals $uhfmo_beta will be written to file beta + + orbitals $uhfmo_alpha will be written to file alpha + + alpha: + + irrep 1a 2a 3a 4a 5a + eigenvalues H -19.33294 -1.44767 -0.96936 -0.82863 -0.81523 + eV -526.0802 -39.3934 -26.3779 -22.5484 -22.1838 + occupation 1.0000 1.0000 1.0000 1.0000 1.0000 + + irrep 6a 7a 8a 9a 10a + eigenvalues H -0.29906 -0.22211 0.16374 0.22168 0.37168 + eV -8.1378 -6.0439 4.4555 6.0323 10.1140 + + beta: + + irrep 1a 2a 3a 4a 5a + eigenvalues H -19.30687 -1.39049 -0.94946 -0.78665 -0.67946 + eV -525.3709 -37.8374 -25.8363 -21.4060 -18.4892 + occupation 1.0000 1.0000 1.0000 1.0000 + + irrep 6a 7a 8a 9a 10a + eigenvalues H -0.28729 -0.21628 0.16487 0.23733 0.46599 + eV -7.8175 -5.8853 4.4863 6.4580 12.6803 + + + _ _ _ + IRREP alpha occ. beta occ. tr(D*D-D) + + + a 5.00000000 4.00000000 -0.25102710 + + ------------------------------------------------- + + sum 5.00000000 4.00000000 -0.25102710 + + 0.75205420 + + + + + ============================================================================== + electrostatic moments + ============================================================================== + + reference point for electrostatic moments: 0.00000 0.00000 0.00000 + + + nuc elec -> total + ------------------------------------------------------------------------------ + charge + ------------------------------------------------------------------------------ + 10.000000 -9.000000 1.000000 + a-b 1.000000 + + ------------------------------------------------------------------------------ + dipole moment + ------------------------------------------------------------------------------ + x 0.000000 -0.000000 -0.000000 + y 0.000000 0.000000 0.000000 + z -5.079052 5.452532 0.373480 + + | dipole moment | = 0.3735 a.u. = 0.9493 debye + + ------------------------------------------------------------------------------ + quadrupole moment + ------------------------------------------------------------------------------ + xx 4.016539 -5.791038 -1.774499 + yy 0.000000 -3.492600 -3.492600 + zz 4.474951 -8.399997 -3.925046 + xy 0.000000 0.000000 0.000000 + xz 0.000000 0.000000 0.000000 + yz 0.000000 -0.000000 -0.000000 + + 1/3 trace= -3.064048 + anisotropy= 1.970245 + + ============================================================================== + +HOMO-LUMO Separation + HOMO : -0.78664890 H = -21.40582 eV + LUMO : -0.67946128 H = -18.48909 eV + HOMO-LUMO gap: 0.10718763 H = +2.91673 eV + + ============================================================================== + + + ------------------------------------------------------------------------ + total cpu-time : 0.27 seconds + total wall-time : 1.78 seconds + ------------------------------------------------------------------------ + + **** dscf : all done **** + + + 2023-01-25 00:18:21.229 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/ref_output.json new file mode 100644 index 0000000..24217ab --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/ref_output.json @@ -0,0 +1,254 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "ScfOutput", + "@version": "1.3.0", + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": null, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "scf": { + "@module": "turbomoleio.output.data", + "@class": "ScfData", + "@version": "1.3.0", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "ScfIterationData", + "@version": "1.3.0", + "energies": [ + -75.709149222343, + -75.816081492466, + -75.857212061739, + -75.874157090013, + -75.879194045962, + -75.880260802113, + -75.880414311673, + -75.880428556505, + -75.880429245802, + -75.880429377768, + -75.88056067654 + ], + "first_index": 1, + "n_steps": 11, + "dampings": [ + 1.0, + 0.95, + 0.8, + 0.65, + 0.5, + 0.35, + 0.2, + 0.1, + 0.15, + 0.2, + 0.25 + ], + "converged": true + }, + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": false, + "virtual_orbital_shift_limit": null, + "orbital_characterization": "expanded", + "restart_file": "alpha", + "n_occupied_orbitals": 5 + }, + "energies": { + "@module": "turbomoleio.output.data", + "@class": "ScfEnergiesData", + "@version": "1.3.0", + "total_energy": -75.88056067654, + "kinetic_energy": 75.74900599616, + "potential_energy": -151.6295666727, + "virial_theorem": 1.99826629272, + "wavefunction_norm": 1.0, + "coulomb_energy": null, + "xc_energy": null, + "ts_energy": null, + "free_energy": null, + "sigma0_energy": null + }, + "electrostatic": { + "@module": "turbomoleio.output.data", + "@class": "ElectrostaticMomentsData", + "@version": "1.3.0", + "charge": 1.0, + "unrestricted_electrons": 1.0, + "dipole_vector": [ + -0.0, + 0.0, + 0.37348 + ], + "dipole_norm": 0.3735, + "quadrupole_tensor": [ + [ + -1.774499, + 0.0, + 0.0 + ], + [ + 0.0, + -3.4926, + -0.0 + ], + [ + 0.0, + -0.0, + -3.925046 + ] + ], + "quadrupole_trace": -9.192144, + "quadrupole_anisotropy": 1.970245 + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790525 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "O", + "species": [ + { + "element": "O", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + -0.38395982917561094 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 0.7499151287230262, + 0.0, + 0.19197991458780547 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -0.7499151287230262, + 0.0, + 0.19197991458780547 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": null + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:19.500000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:21.229000" + }, + "cpu_time": 0.27, + "wall_time": 1.78 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "dscf" + }, + "cosmo": null, + "spin": { + "@module": "turbomoleio.output.data", + "@class": "SpinData", + "@version": "1.3.0", + "unrestricted": true, + "s2": { + "s2": 0.7520542 + } + }, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 1.8e-10, + "thize": 1e-05, + "thime": 5 + }, + "smearing": null, + "symmetry": { + "@module": "turbomoleio.output.data", + "@class": "SymmetryData", + "@version": "1.3.0", + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + }, + "periodicity": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/ref_parser.json new file mode 100644 index 0000000..92b7b02 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/h2o_uhf/ref_parser.json @@ -0,0 +1,207 @@ +{ + "all_done": true, + "header": { + "executable": "dscf", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:19.500000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790525 + ] + }, + "coordinates": { + "coords": [ + [ + 0.0, + 0.0, + -0.72557892 + ], + [ + 1.41713421, + 0.0, + 0.36278946 + ], + [ + -1.41713421, + 0.0, + 0.36278946 + ] + ], + "species": [ + "o", + "h", + "h" + ], + "charges": [ + 8.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": null + }, + "symmetry": { + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": null, + "pre_scf_run": { + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": false, + "virtual_orbital_shift_limit": null, + "orbital_characterization": "expanded", + "restart_file": "alpha", + "n_occupied_orbitals": 5 + }, + "scf_iterations": { + "energies": [ + -75.709149222343, + -75.816081492466, + -75.857212061739, + -75.874157090013, + -75.879194045962, + -75.880260802113, + -75.880414311673, + -75.880428556505, + -75.880429245802, + -75.880429377768, + -75.88056067654 + ], + "first_index": 1, + "n_steps": 11, + "dampings": [ + 1.0, + 0.95, + 0.8, + 0.65, + 0.5, + 0.35, + 0.2, + 0.1, + 0.15, + 0.2, + 0.25 + ], + "converged": true + }, + "scf_energies": { + "total_energy": -75.88056067654, + "kinetic_energy": 75.74900599616, + "potential_energy": -151.6295666727, + "virial_theorem": 1.99826629272, + "wavefunction_norm": 1.0 + }, + "cosmo_results": null, + "electrostatic_moments": { + "unrestricted_electrons": 1.0, + "charge": 1.0, + "dipole": { + "norm": 0.3735, + "moment": [ + -0.0, + 0.0, + 0.37348 + ] + }, + "quadrupole": { + "trace": -9.192144, + "anisotropy": 1.970245, + "moment": [ + [ + -1.774499, + 0.0, + 0.0 + ], + [ + 0.0, + -3.4926, + -0.0 + ], + [ + 0.0, + -0.0, + -3.925046 + ] + ] + } + }, + "timings": { + "cpu_time": 0.27, + "wall_time": 1.78, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:21.229000" + } + }, + "s2": { + "s2": 0.7520542 + }, + "is_uhf": true, + "fermi": null, + "integral": { + "integral_neglect_threshold": 1.8e-10, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": null, + "escf_iterations": null, + "escf_gs_total_en": null, + "escf_excitations": null, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/dscf.log b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/dscf.log new file mode 100644 index 0000000..102d22d --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/dscf.log @@ -0,0 +1,418 @@ + + dscf (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:18:36.870 + + + + d s c f - program + + idea & directorship : reinhart ahlrichs + program development : marco haeser + michael baer + dft version : oliver treutler + + + quantum chemistry group + universitaet karlsruhe + germany + + + + *-----------------------------------------------------------------------* + | program will use 1 thread(s) | + *-----------------------------------------------------------------------* + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 0.12917062 n 7.000 0 + 1.75612466 0.00000000 -0.59831614 h 1.000 0 + -0.87806233 1.52084857 -0.59831614 h 1.000 0 + -0.87806233 -1.52084857 -0.59831614 h 1.000 0 + + center of nuclear mass : -0.00000000 0.00000000 0.00000000 + center of nuclear charge: -0.00000000 0.00000000 -0.08907541 + + ************************************************************************* + dscf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + n 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 3 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 4 36 20 + --------------------------------------------------------------------------- + + total number of primitive shells : 16 + total number of contracted shells : 12 + total number of cartesian basis functions : 21 + total number of SCF-basis functions : 20 + + + integral neglect threshold : 0.16E-09 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + symmetry group of the molecule : c1 + + the group has the following generators : + c1(z) + + 1 symmetry operations found + + there are 1 real representations : a + + maximum number of shells which are related by symmetry : 1 + + ============================================================================== + COSMO switched on + ============================================================================== + COSMO stati: segments per atom: H 32 other atoms 92 + COSMO statistics: nps 168 npspher: 105 + COSMO surface: + number of segments: 168 + area (bohr**2): 172.967551 + volume (bohr**3): 205.077776 + COSMO: check number of disjunct cavities: + + ... OK contiguous cavity found + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 4 + partition function : becke + partition sharpness : 3 + + + ------------------------ + nuclear repulsion energy : 12.0340111163 + ------------------------ + + + ----------------- + -S,T+V- integrals + ----------------- + + 1e-integrals will be neglected if expon. factor < 0.159141E-10 + + Difference densities algorithm switched on. + The maximal number of linear combinations of + difference densities is 20 . + + DIIS switched on: error vector is FDS-SDF + Max. Iterations for DIIS is : 4 + DIIS matrix (see manual) + Scaling factor of diagonals : 1.200 + threshold for scaling factor : 0.000 + + scf convergence criterion : increment of total energy < .1000000D-06 + and increment of one-electron energy < .1000000D-03 + + MOs are in ASCII format ! + + + mo occupation : + irrep mo's occupied + a 20 5 + + number of basis functions : 20 + number of occupied orbitals : 5 + + + reading orbital data $scfmo from file mos + orbital characterization : expanded + virtual MOs provided and orthogonalized by Cholesky decomposition + + automatic virtual orbital shift switched on + shift if e(lumo)-e(homo) < 0.10000000 + + + DSCF restart information will be dumped onto file mos + + Fermi smearing switched on + Initial electron temperature: 500.00 + Final electron temperature: 50.00 + Annealing factor: 0.900 + Annealing if HOMO-LUMO gap < 0.2E+00 + Smearing switched off if DE < 0.1E-02 + Overall gridpoints after grid construction = 4369 + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 1 -56.339530065681 -100.07607680 31.702535618 0.000D+00 0.159D-09 + Exc = -8.011498791125 N = 9.9991073352 + Ediel = -0.018950975729 + max. resid. norm for Fia-block= 2.210D-01 for orbital 1a + max. resid. fock norm = 1.048D+00 for orbital 14a + Delta Eig. = 41.0161789303 eV + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 2 -56.481584020021 -99.486643286 30.971048150 0.473D+00 0.103D-09 + Exc = -7.964028252637 N = 9.9992917164 + Ediel = -0.010862024726 + Norm of current diis error: 0.27670 + max. resid. norm for Fia-block= 7.184D-02 for orbital 2a + max. resid. fock norm = 8.181D-02 for orbital 6a + Delta Eig. = 9.7935957063 eV + -------------------- FON Calculation --------------------- + Fermi level F = -0.22302 + Total number of electrons N = 10.00000 + Occupation numbers calculated for T = 500.00000 + Current HOMO-LUMO gap = 0.37604E+00 + ---------------------------------------------------------- + + current damping : 0.200 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 3 -56.499803347559 -100.11295250 31.579138037 0.199D+00 0.790D-10 + Exc = -8.075398534807 N = 9.9993897393 + Ediel = -0.011082679359 + Norm of current diis error: 0.12550 + max. resid. norm for Fia-block= 2.756D-02 for orbital 5a + max. resid. fock norm = 2.759D-02 for orbital 5a + Delta Eig. = 3.6547872367 eV + -------------------- FON Calculation --------------------- + Fermi level F = -0.18473 + Total number of electrons N = 10.00000 + Occupation numbers calculated for T = 500.00000 + Current HOMO-LUMO gap = 0.27762E+00 + ---------------------------------------------------------- + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 4 -56.502570657774 -99.673147749 31.136565975 0.101D+00 0.725D-10 + Exc = -8.024976945756 N = 9.9994060888 + Ediel = -0.009769970317 + Norm of current diis error: 0.66317E-01 + max. resid. norm for Fia-block= 7.184D-03 for orbital 2a + max. resid. fock norm = 7.216D-03 for orbital 2a + Delta Eig. = 0.3348327064 eV + -------------------- FON Calculation --------------------- + Fermi level F = -0.18787 + Total number of electrons N = 10.00000 + Occupation numbers calculated for T = 500.00000 + Current HOMO-LUMO gap = 0.26856E+00 + ---------------------------------------------------------- + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 5 -56.503211322094 -99.809144732 31.271922294 0.966D-02 0.698D-10 + Exc = -8.043188905168 N = 9.9994070642 + Ediel = -0.010061865602 + Norm of current diis error: 0.95995E-02 + max. resid. norm for Fia-block= 1.045D-03 for orbital 2a + max. resid. fock norm = 1.077D-03 for orbital 2a + mo-orthogonalization: Cholesky decomposition + Delta Eig. = 0.0626687573 eV + -------------------- FON Calculation --------------------- + Fermi level F = -0.18824 + Total number of electrons N = 10.00000 + Occupation numbers calculated for T = 500.00000 + Current HOMO-LUMO gap = 0.26685E+00 + ---------------------------------------------------------- + + current damping : 0.150 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 6 -56.503225254876 -99.828541120 31.291304749 0.791D-03 0.669D-10 + Exc = -8.045816038970 N = 9.9994074366 + Ediel = -0.010111947022 + Norm of current diis error: 0.15186E-02 + max. resid. norm for Fia-block= 1.950D-04 for orbital 2a + max. resid. fock norm = 1.970D-04 for orbital 2a + Delta Eig. = 0.0147728031 eV + -------------------- FON Calculation --------------------- + Fermi level F = -0.18823 + Total number of electrons N = 10.00000 + Occupation numbers calculated for T = 500.00000 + Current HOMO-LUMO gap = 0.26629E+00 + ---------------------------------------------------------- + + current damping : 0.100 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 7 -56.503225620147 -99.831674966 31.294438230 0.947D-04 0.647D-10 + Exc = -8.046261272361 N = 9.9994075222 + Ediel = -0.010117037506 + Norm of current diis error: 0.14368E-03 + max. resid. norm for Fia-block= 1.882D-05 for orbital 2a + max. resid. fock norm = 2.216D-05 for orbital 6a + Delta Eig. = 0.0018096782 eV + -------------------- FON Calculation --------------------- + Fermi level F = -0.18822 + Total number of electrons N = 10.00000 + Occupation numbers calculated for T = 500.00000 + Current HOMO-LUMO gap = 0.26622E+00 + ---------------------------------------------------------- + + ENERGY CONVERGED ! + + Evaluating v_xc on big grid + Overall gridpoints after grid construction = 17370 + + current damping : 0.150 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 8 -56.503498199225 -99.831928108 31.294418793 0.634D-05 0.627D-10 + Exc = -8.046569815347 N = 9.9999980190 + Ediel = -0.010117653696 + max. resid. norm for Fia-block= 4.352D-06 for orbital 2a + max. resid. fock norm = 4.569D-06 for orbital 2a + + convergence criteria satisfied after 8 iterations + + + ************************************************************************* + dscf + ************************************************************************* + + + ------------------------------------------ + | total energy = -56.50349819923 | + ------------------------------------------ + : kinetic energy = 56.09160310044 : + : potential energy = -112.59510129966 : + : virial theorem = 1.99271027260 : + : wavefunction norm = 1.00000000000 : + .......................................... + + + : there is no data group $energy + + + : $end is missing + + + orbitals $scfmo will be written to file mos + + irrep 1a 2a 3a 4a 5a + eigenvalues H -13.96499 -0.75969 -0.40366 -0.40362 -0.20847 + eV -380.0098 -20.6724 -10.9841 -10.9830 -5.6727 + occupation 2.0000 2.0000 2.0000 2.0000 2.0000 + + irrep 6a 7a 8a 9a 10a + eigenvalues H 0.05774 0.14082 0.14091 0.50118 0.50119 + eV 1.5713 3.8320 3.8343 13.6378 13.6383 + + ============================================================================== + COSMO RESULTS + ============================================================================== + PARAMETER: + nppa: 1082 + nspa: 92 + nsph: 32 + nps: 168 + npspher: 105 + disex: 10.0000 + disex2: 3600.83 + rsolv [A]: 1.3000 + routf: 0.8500 + phsran: 0.0 + ampran: 0.10E-04 + cavity: closed + epsilon: infinity + refind: 1.300 + fepsi: 1.0000000 + CAVITY VOLUME/AREA [a.u.]: + surface: V1.0, A matrix: V1.0 + area: 172.97 + volume: 205.08 + SCREENING CHARGE: + cosmo : -0.008248 + correction : 0.008009 + total : -0.000239 + ENERGIES [a.u.]: + Total energy = -56.5034981992255 + Total energy + OC corr. = -56.5035468625 + Dielectric energy = -0.0101176537 + Diel. energy + OC corr. = -0.0101663169 + ELEMENT RADIUS [A]: ATOM LIST + n 1.83: 1 + h 1.30: 2-4 + ============================================================================== + + + + ============================================================================== + electrostatic moments + ============================================================================== + + reference point for electrostatic moments: 0.00000 0.00000 0.00000 + + + nuc elec -> total + ------------------------------------------------------------------------------ + charge + ------------------------------------------------------------------------------ + 10.000000 -10.000000 -0.000000 + + ------------------------------------------------------------------------------ + dipole moment + ------------------------------------------------------------------------------ + x -0.000000 -0.000114 -0.000114 + y 0.000000 -0.000076 -0.000076 + z -0.890754 0.048405 -0.842349 + + | dipole moment | = 0.8423 a.u. = 2.1410 debye + + ------------------------------------------------------------------------------ + quadrupole moment + ------------------------------------------------------------------------------ + xx 4.625961 -9.138071 -4.512110 + yy 4.625961 -9.137889 -4.511928 + zz 1.190742 -7.528081 -6.337339 + xy 0.000000 0.000008 0.000008 + xz 0.000000 0.000163 0.000163 + yz 0.000000 -0.000023 -0.000023 + + 1/3 trace= -5.120459 + anisotropy= 1.825320 + + ============================================================================== + +HOMO-LUMO Separation + HOMO : -0.20846672 H = -5.67267 eV + LUMO : 0.05774319 H = +1.57127 eV + HOMO-LUMO gap: 0.26620991 H = +7.24394 eV + + ============================================================================== + + + ------------------------------------------------------------------------ + total cpu-time : 0.37 seconds + total wall-time : 2.35 seconds + ------------------------------------------------------------------------ + + **** dscf : all done **** + + + 2023-01-25 00:18:39.160 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/ref_output.json new file mode 100644 index 0000000..f5ad229 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/ref_output.json @@ -0,0 +1,322 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "ScfOutput", + "@version": "1.3.0", + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": null, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "scf": { + "@module": "turbomoleio.output.data", + "@class": "ScfData", + "@version": "1.3.0", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "ScfIterationData", + "@version": "1.3.0", + "energies": [ + -56.339530065681, + -56.481584020021, + -56.499803347559, + -56.502570657774, + -56.503211322094, + -56.503225254876, + -56.503225620147, + -56.503498199225 + ], + "first_index": 1, + "n_steps": 8, + "dampings": [ + 0.3, + 0.25, + 0.2, + 0.25, + 0.3, + 0.15, + 0.1, + 0.15 + ], + "converged": true + }, + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": true, + "virtual_orbital_shift_limit": 0.1, + "orbital_characterization": "expanded", + "restart_file": "mos", + "n_occupied_orbitals": 5 + }, + "energies": { + "@module": "turbomoleio.output.data", + "@class": "ScfEnergiesData", + "@version": "1.3.0", + "total_energy": -56.50349819923, + "kinetic_energy": 56.09160310044, + "potential_energy": -112.59510129966, + "virial_theorem": 1.9927102726, + "wavefunction_norm": 1.0, + "coulomb_energy": null, + "xc_energy": null, + "ts_energy": null, + "free_energy": null, + "sigma0_energy": null + }, + "electrostatic": { + "@module": "turbomoleio.output.data", + "@class": "ElectrostaticMomentsData", + "@version": "1.3.0", + "charge": -0.0, + "unrestricted_electrons": null, + "dipole_vector": [ + -0.000114, + -7.6e-05, + -0.842349 + ], + "dipole_norm": 0.8423, + "quadrupole_tensor": [ + [ + -4.51211, + 8e-06, + 0.000163 + ], + [ + 8e-06, + -4.511928, + -2.3e-05 + ], + [ + 0.000163, + -2.3e-05, + -6.337339 + ] + ], + "quadrupole_trace": -15.361377000000001, + "quadrupole_anisotropy": 1.82532 + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + -0.0, + 0.0, + 0.0 + ], + "center_of_charge": [ + -0.0, + 0.0, + -0.08907541 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "N", + "species": [ + { + "element": "N", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + 0.06835414842221127 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 0.9293011495767791, + 0.0, + -0.3166152662034489 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -0.46465057478838956, + 0.8047984044784159, + -0.3166152662034489 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -0.46465057478838956, + -0.8047984044784159, + -0.3166152662034489 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "n": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 20, + "number_scf_aux_basis_func": null + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:36.870000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:39.160000" + }, + "cpu_time": 0.37, + "wall_time": 2.35 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "dscf" + }, + "cosmo": { + "@module": "turbomoleio.output.data", + "@class": "CosmoData", + "@version": "1.3.0", + "info": { + "area": 172.967551, + "volume": 205.077776 + }, + "parameters": { + "nppa": 1082, + "nspa": 92, + "nsph": 32, + "nps": 168, + "npspher": 105, + "disex": 10.0, + "disex2": 3600.83, + "rsolv": 1.3, + "routf": 0.85, + "phsran": 0.0, + "ampran": 1e-05, + "cavity": "closed", + "epsilon": "infinity", + "refind": 1.3, + "fepsi": 1.0 + }, + "screening_charge": { + "cosmo": -0.008248, + "correction": 0.008009, + "total": -0.000239 + }, + "energies": { + "total_energy": -56.5034981992255, + "total_energy_oc_corr": -56.5035468625, + "dielectric_energy": -0.0101176537, + "dielectric_energy_oc_corr": -0.0101663169 + }, + "element_radius": { + "N": { + "radius": 1.83, + "sites": [ + 1 + ] + }, + "H": { + "radius": 1.3, + "sites": [ + 2, + 3, + 4 + ] + } + } + }, + "spin": { + "@module": "turbomoleio.output.data", + "@class": "SpinData", + "@version": "1.3.0", + "unrestricted": false, + "s2": null + }, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 1.6e-10, + "thize": 1e-05, + "thime": 5 + }, + "smearing": { + "@module": "turbomoleio.output.data", + "@class": "SmearingData", + "@version": "1.3.0", + "initial_elec_temp": 500.0, + "final_elec_temp": 50.0, + "annealing_factor": 0.9, + "annealing_homo_lumo_gap_limit": 0.2, + "smearing_de_limit": 0.001 + }, + "symmetry": { + "@module": "turbomoleio.output.data", + "@class": "SymmetryData", + "@version": "1.3.0", + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + }, + "periodicity": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/ref_parser.json new file mode 100644 index 0000000..8e0cea6 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_cosmo_fermi/ref_parser.json @@ -0,0 +1,261 @@ +{ + "all_done": true, + "header": { + "executable": "dscf", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:36.870000" + } + }, + "centers": { + "center_of_mass": [ + -0.0, + 0.0, + 0.0 + ], + "center_of_charge": [ + -0.0, + 0.0, + -0.08907541 + ] + }, + "coordinates": { + "coords": [ + [ + 0.0, + 0.0, + 0.12917062 + ], + [ + 1.75612466, + 0.0, + -0.59831614 + ], + [ + -0.87806233, + 1.52084857, + -0.59831614 + ], + [ + -0.87806233, + -1.52084857, + -0.59831614 + ] + ], + "species": [ + "n", + "h", + "h", + "h" + ], + "charges": [ + 7.0, + 1.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "n": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 20, + "number_scf_aux_basis_func": null + }, + "symmetry": { + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + }, + "cosmo_header": { + "area": 172.967551, + "volume": 205.077776 + }, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": null, + "pre_scf_run": { + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": true, + "virtual_orbital_shift_limit": 0.1, + "orbital_characterization": "expanded", + "restart_file": "mos", + "n_occupied_orbitals": 5 + }, + "scf_iterations": { + "energies": [ + -56.339530065681, + -56.481584020021, + -56.499803347559, + -56.502570657774, + -56.503211322094, + -56.503225254876, + -56.503225620147, + -56.503498199225 + ], + "first_index": 1, + "n_steps": 8, + "dampings": [ + 0.3, + 0.25, + 0.2, + 0.25, + 0.3, + 0.15, + 0.1, + 0.15 + ], + "converged": true + }, + "scf_energies": { + "total_energy": -56.50349819923, + "kinetic_energy": 56.09160310044, + "potential_energy": -112.59510129966, + "virial_theorem": 1.9927102726, + "wavefunction_norm": 1.0 + }, + "cosmo_results": { + "parameters": { + "nppa": 1082, + "nspa": 92, + "nsph": 32, + "nps": 168, + "npspher": 105, + "disex": 10.0, + "disex2": 3600.83, + "rsolv": 1.3, + "routf": 0.85, + "phsran": 0.0, + "ampran": 1e-05, + "cavity": "closed", + "epsilon": "infinity", + "refind": 1.3, + "fepsi": 1.0 + }, + "screening_charge": { + "cosmo": -0.008248, + "correction": 0.008009, + "total": -0.000239 + }, + "energies": { + "total_energy": -56.5034981992255, + "total_energy_oc_corr": -56.5035468625, + "dielectric_energy": -0.0101176537, + "dielectric_energy_oc_corr": -0.0101663169 + }, + "element_radius": { + "n": { + "radius": 1.83, + "sites": [ + 1 + ] + }, + "h": { + "radius": 1.3, + "sites": [ + 2, + 3, + 4 + ] + } + } + }, + "electrostatic_moments": { + "unrestricted_electrons": null, + "charge": -0.0, + "dipole": { + "norm": 0.8423, + "moment": [ + -0.000114, + -7.6e-05, + -0.842349 + ] + }, + "quadrupole": { + "trace": -15.361377000000001, + "anisotropy": 1.82532, + "moment": [ + [ + -4.51211, + 8e-06, + 0.000163 + ], + [ + 8e-06, + -4.511928, + -2.3e-05 + ], + [ + 0.000163, + -2.3e-05, + -6.337339 + ] + ] + } + }, + "timings": { + "cpu_time": 0.37, + "wall_time": 2.35, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:39.160000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": { + "initial_elec_temp": 500.0, + "final_elec_temp": 50.0, + "annealing_homo_lumo_gap_limit": 0.2, + "smearing_de_limit": 0.001, + "annealing_factor": 0.9 + }, + "integral": { + "integral_neglect_threshold": 1.6e-10, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": null, + "escf_iterations": null, + "escf_gs_total_en": null, + "escf_excitations": null, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/dscf.log b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/dscf.log new file mode 100644 index 0000000..998030d --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/dscf.log @@ -0,0 +1,333 @@ + + dscf (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:18:22.428 + + + + d s c f - program + + idea & directorship : reinhart ahlrichs + program development : marco haeser + michael baer + dft version : oliver treutler + + + quantum chemistry group + universitaet karlsruhe + germany + + + + *-----------------------------------------------------------------------* + | program will use 1 thread(s) | + *-----------------------------------------------------------------------* + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 0.54561507 n 7.000 0 + -0.87806233 1.52084857 -0.18187169 h 1.000 0 + -0.87806233 -1.52084857 -0.18187169 h 1.000 0 + 1.75612466 0.00000000 -0.18187169 h 1.000 0 + + center of nuclear mass : 0.00000000 0.00000000 0.41644445 + center of nuclear charge: 0.00000000 0.00000000 0.32736904 + + ************************************************************************* + dscf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + n 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 3 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 4 36 20 + --------------------------------------------------------------------------- + + total number of primitive shells : 16 + total number of contracted shells : 12 + total number of cartesian basis functions : 21 + total number of SCF-basis functions : 20 + + + integral neglect threshold : 0.16E-09 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + symmetry group of the molecule : c3v + + the group has the following generators : + c3(z) + mirror plane sigma(xz) + + 6 symmetry operations found + + there are 3 real representations : a1 a2 e + + maximum number of shells which are related by symmetry : 3 + + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 2 + partition function : becke + partition sharpness : 3 + + grid rotated due to c3 or c6 main axis + + ------------------------ + nuclear repulsion energy : 12.0340111163 + ------------------------ + + + ----------------- + -S,T+V- integrals + ----------------- + + 1e-integrals will be neglected if expon. factor < 0.159141E-10 + + Difference densities algorithm switched on. + The maximal number of linear combinations of + difference densities is 20 . + + DIIS switched on: error vector is FDS-SDF + Max. Iterations for DIIS is : 4 + DIIS matrix (see manual) + Scaling factor of diagonals : 1.200 + threshold for scaling factor : 0.000 + + scf convergence criterion : increment of total energy < .1000000D-06 + and increment of one-electron energy < .1000000D-03 + + MOs are in ASCII format ! + + + mo occupation : + irrep mo's occupied + a1 8 3 + a2 0 0 + e 6 1 + + number of basis functions : 20 + number of occupied orbitals : 5 + + + reading orbital data $scfmo from file mos + orbital characterization : expanded + virtual MOs provided and orthogonalized by Cholesky decomposition + + automatic virtual orbital shift switched on + shift if e(lumo)-e(homo) < 0.10000000 + + + DSCF restart information will be dumped onto file mos + + Overall gridpoints after grid construction = 1018 + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 1 -56.321601056514 -100.05712582 31.701513651 0.000D+00 0.159D-09 + Exc = -8.012520757666 N = 10.003235294 + max. resid. norm for Fia-block= 2.201D-01 for orbital 1a1 + max. resid. fock norm = 9.780D-01 for orbital 4a1 + Delta Eig. = 41.4734907870 eV + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 2 -56.472819525478 -99.411593322 30.904762680 0.417D+00 0.102D-09 + Exc = -7.959906798389 N = 10.002513936 + Norm of current diis error: 0.33310 + max. resid. norm for Fia-block= 7.272D-02 for orbital 2a1 + max. resid. fock norm = 8.294D-02 for orbital 4a1 + Delta Eig. = 9.7750264813 eV + + current damping : 0.200 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 3 -56.491696141354 -100.05200569 31.526298436 0.195D+00 0.797D-10 + Exc = -8.073857511874 N = 10.002242932 + Norm of current diis error: 0.15169 + max. resid. norm for Fia-block= 2.620D-02 for orbital 3a1 + max. resid. fock norm = 2.625D-02 for orbital 3a1 + Delta Eig. = 3.5899306277 eV + + current damping : 0.250 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 4 -56.494380845537 -99.622959557 31.094567596 0.120D+00 0.719D-10 + Exc = -8.025191175908 N = 10.002267031 + Norm of current diis error: 0.82225E-01 + max. resid. norm for Fia-block= 7.181D-03 for orbital 2a1 + max. resid. fock norm = 7.203D-03 for orbital 2a1 + Delta Eig. = 0.3505445109 eV + + current damping : 0.300 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 5 -56.495001530423 -99.754179935 31.225167288 0.101D-01 0.692D-10 + Exc = -8.042554004612 N = 10.002269365 + Norm of current diis error: 0.12904E-01 + max. resid. norm for Fia-block= 1.098D-03 for orbital 2a1 + max. resid. fock norm = 1.133D-03 for orbital 2a1 + mo-orthogonalization: Cholesky decomposition + Delta Eig. = 0.0641672965 eV + + current damping : 0.150 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 6 -56.495016942941 -99.774049223 31.245021164 0.583D-03 0.665D-10 + Exc = -8.045217452019 N = 10.002270390 + Norm of current diis error: 0.22817E-02 + max. resid. norm for Fia-block= 2.242D-04 for orbital 2a1 + max. resid. fock norm = 2.264D-04 for orbital 2a1 + Delta Eig. = 0.0155754749 eV + + current damping : 0.100 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 7 -56.495017450803 -99.777886594 31.248858027 0.869D-04 0.643D-10 + Exc = -8.045750494083 N = 10.002270858 + Norm of current diis error: 0.19642E-03 + max. resid. norm for Fia-block= 2.132D-05 for orbital 2a1 + max. resid. fock norm = 2.359D-05 for orbital 2a1 + Delta Eig. = 0.0018947548 eV + + ENERGY CONVERGED ! + + Evaluating v_xc on big grid + Overall gridpoints after grid construction = 3542 + + current damping : 0.100 + ITERATION ENERGY 1e-ENERGY 2e-ENERGY NORM[dD(SAO)] TOL + 8 -56.494404516578 -99.778150477 31.249734844 0.138D-04 0.626D-10 + Exc = -8.045172886026 N = 10.000020935 + max. resid. norm for Fia-block= 5.150D-06 for orbital 2a1 + max. resid. fock norm = 5.209D-06 for orbital 2a1 + + convergence criteria satisfied after 8 iterations + + + ************************************************************************* + dscf + ************************************************************************* + + + ------------------------------------------ + | total energy = -56.49440451658 | + ------------------------------------------ + : kinetic energy = 56.11677159769 : + : potential energy = -112.61117611426 : + : virial theorem = 1.99331556953 : + : wavefunction norm = 1.00000000000 : + .......................................... + + + : there is no data group $energy + + + : $end is missing + + + orbitals $scfmo will be written to file mos + + irrep 1a1 2a1 3a1 4a1 5a1 + eigenvalues H -13.96838 -0.76647 -0.20104 0.04256 0.67341 + eV -380.1019 -20.8568 -5.4707 1.1581 18.3247 + occupation 2.0000 2.0000 2.0000 + + irrep 6a1 7a1 8a1 + eigenvalues H 0.69640 0.90573 2.22992 + eV 18.9501 24.6463 60.6797 + + irrep 1e 2e 3e 4e 5e + eigenvalues H -0.41014 0.12582 0.49883 0.84019 2.02289 + eV -11.1607 3.4237 13.5740 22.8630 55.0461 + occupation 2 * 2.0000 + + irrep 6e + eigenvalues H 2.55166 + eV 69.4348 + + + + + ============================================================================== + electrostatic moments + ============================================================================== + + reference point for electrostatic moments: 0.00000 0.00000 0.00000 + + + nuc elec -> total + ------------------------------------------------------------------------------ + charge + ------------------------------------------------------------------------------ + 10.000000 -10.000000 -0.000000 + + ------------------------------------------------------------------------------ + dipole moment + ------------------------------------------------------------------------------ + x 0.000000 -0.000000 0.000000 + y 0.000000 0.000000 0.000000 + z 3.273690 -4.010053 -0.736363 + + | dipole moment | = 0.7364 a.u. = 1.8716 debye + + ------------------------------------------------------------------------------ + quadrupole moment + ------------------------------------------------------------------------------ + xx 4.625961 -9.223282 -4.597321 + yy 4.625961 -9.223282 -4.597321 + zz 2.183103 -9.132466 -6.949364 + xy 0.000000 -0.000000 -0.000000 + xz -0.000000 0.000000 -0.000000 + yz 0.000000 -0.000000 -0.000000 + + 1/3 trace= -5.381335 + anisotropy= 2.352042 + + ============================================================================== + +HOMO-LUMO Separation + HOMO : -0.20104159 H = -5.47062 eV + LUMO : 0.04255846 H = +1.15808 eV + HOMO-LUMO gap: 0.24360005 H = +6.62870 eV + + ============================================================================== + + + ------------------------------------------------------------------------ + total cpu-time : 0.13 seconds + total wall-time : 1.08 seconds + ------------------------------------------------------------------------ + + **** dscf : all done **** + + + 2023-01-25 00:18:23.454 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/ref_output.json new file mode 100644 index 0000000..5600e66 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/ref_output.json @@ -0,0 +1,263 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "ScfOutput", + "@version": "1.3.0", + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": null, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "scf": { + "@module": "turbomoleio.output.data", + "@class": "ScfData", + "@version": "1.3.0", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "ScfIterationData", + "@version": "1.3.0", + "energies": [ + -56.321601056514, + -56.472819525478, + -56.491696141354, + -56.494380845537, + -56.495001530423, + -56.495016942941, + -56.495017450803, + -56.494404516578 + ], + "first_index": 1, + "n_steps": 8, + "dampings": [ + 0.3, + 0.25, + 0.2, + 0.25, + 0.3, + 0.15, + 0.1, + 0.1 + ], + "converged": true + }, + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": true, + "virtual_orbital_shift_limit": 0.1, + "orbital_characterization": "expanded", + "restart_file": "mos", + "n_occupied_orbitals": 5 + }, + "energies": { + "@module": "turbomoleio.output.data", + "@class": "ScfEnergiesData", + "@version": "1.3.0", + "total_energy": -56.49440451658, + "kinetic_energy": 56.11677159769, + "potential_energy": -112.61117611426, + "virial_theorem": 1.99331556953, + "wavefunction_norm": 1.0, + "coulomb_energy": null, + "xc_energy": null, + "ts_energy": null, + "free_energy": null, + "sigma0_energy": null + }, + "electrostatic": { + "@module": "turbomoleio.output.data", + "@class": "ElectrostaticMomentsData", + "@version": "1.3.0", + "charge": -0.0, + "unrestricted_electrons": null, + "dipole_vector": [ + 0.0, + 0.0, + -0.736363 + ], + "dipole_norm": 0.7364, + "quadrupole_tensor": [ + [ + -4.597321, + -0.0, + -0.0 + ], + [ + -0.0, + -4.597321, + -0.0 + ], + [ + -0.0, + -0.0, + -6.949364 + ] + ], + "quadrupole_trace": -16.144005, + "quadrupole_anisotropy": 2.352042 + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + 0.0, + 0.0, + 0.41644445 + ], + "center_of_charge": [ + 0.0, + 0.0, + 0.32736904 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "N", + "species": [ + { + "element": "N", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + 0.28872706096924505 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -0.46465057478838956, + 0.8047984044784159, + -0.09624235365641504 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -0.46465057478838956, + -0.8047984044784159, + -0.09624235365641504 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 0.9293011495767791, + 0.0, + -0.09624235365641504 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "n": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 20, + "number_scf_aux_basis_func": null + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:22.428000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:23.454000" + }, + "cpu_time": 0.13, + "wall_time": 1.08 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "dscf" + }, + "cosmo": null, + "spin": { + "@module": "turbomoleio.output.data", + "@class": "SpinData", + "@version": "1.3.0", + "unrestricted": false, + "s2": null + }, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 1.6e-10, + "thize": 1e-05, + "thime": 5 + }, + "smearing": null, + "symmetry": { + "@module": "turbomoleio.output.data", + "@class": "SymmetryData", + "@version": "1.3.0", + "symbol": "c3v", + "n_reps": 3, + "reps": [ + "a1", + "a2", + "e" + ] + }, + "periodicity": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/ref_parser.json new file mode 100644 index 0000000..04101b1 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/dscf/nh3_dftd1/ref_parser.json @@ -0,0 +1,209 @@ +{ + "all_done": true, + "header": { + "executable": "dscf", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:22.428000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + 0.41644445 + ], + "center_of_charge": [ + 0.0, + 0.0, + 0.32736904 + ] + }, + "coordinates": { + "coords": [ + [ + 0.0, + 0.0, + 0.54561507 + ], + [ + -0.87806233, + 1.52084857, + -0.18187169 + ], + [ + -0.87806233, + -1.52084857, + -0.18187169 + ], + [ + 1.75612466, + 0.0, + -0.18187169 + ] + ], + "species": [ + "n", + "h", + "h", + "h" + ], + "charges": [ + 7.0, + 1.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "n": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 20, + "number_scf_aux_basis_func": null + }, + "symmetry": { + "symbol": "c3v", + "n_reps": 3, + "reps": [ + "a1", + "a2", + "e" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": null, + "pre_scf_run": { + "diis": true, + "diis_error_vect": "FDS-SDF", + "conv_tot_en": 1e-07, + "conv_one_e_en": 0.0001, + "virtual_orbital_shift_on": true, + "virtual_orbital_shift_limit": 0.1, + "orbital_characterization": "expanded", + "restart_file": "mos", + "n_occupied_orbitals": 5 + }, + "scf_iterations": { + "energies": [ + -56.321601056514, + -56.472819525478, + -56.491696141354, + -56.494380845537, + -56.495001530423, + -56.495016942941, + -56.495017450803, + -56.494404516578 + ], + "first_index": 1, + "n_steps": 8, + "dampings": [ + 0.3, + 0.25, + 0.2, + 0.25, + 0.3, + 0.15, + 0.1, + 0.1 + ], + "converged": true + }, + "scf_energies": { + "total_energy": -56.49440451658, + "kinetic_energy": 56.11677159769, + "potential_energy": -112.61117611426, + "virial_theorem": 1.99331556953, + "wavefunction_norm": 1.0 + }, + "cosmo_results": null, + "electrostatic_moments": { + "unrestricted_electrons": null, + "charge": -0.0, + "dipole": { + "norm": 0.7364, + "moment": [ + 0.0, + 0.0, + -0.736363 + ] + }, + "quadrupole": { + "trace": -16.144005, + "anisotropy": 2.352042, + "moment": [ + [ + -4.597321, + -0.0, + -0.0 + ], + [ + -0.0, + -4.597321, + -0.0 + ], + [ + -0.0, + -0.0, + -6.949364 + ] + ] + } + }, + "timings": { + "cpu_time": 0.13, + "wall_time": 1.08, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:23.454000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 1.6e-10, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": null, + "escf_iterations": null, + "escf_gs_total_en": null, + "escf_excitations": null, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/egrad.log b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/egrad.log new file mode 100644 index 0000000..d3acb2f --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/egrad.log @@ -0,0 +1,811 @@ + + egrad (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:18:44.173 + + + + + e g r a d + + TURBOMOLE GmbH + + + integral direct evaluation of excited state + and polarizability gradients + and first-order nonadiabatic couplings + + + + references (see also programs escf, dscf and ridft) + + review + F. Furche and D. Rappoport, + "Density functional methods for excited states: + equilibrium structure and electronic spectra", + ch. III of "Computational Photochemistry", ed. by + M. Olivucci, vol. 16 of "Theoretical and Computational + Chemistry", Elsevier, Amsterdam, 2005. + + nonorthonormal Krylov space methods + F. Furche, B. T. Krull, B. D. Nguyen, J. Kwon, + J. Chem. Phys. 144 (2016), 174105. + + RI-J method + D. Rappoport and F. Furche, + J. Chem. Phys. 122 (2005), 064105. + + Lagrangian method, implementation, benchmarks + F. Furche and R. Ahlrichs, + J. Chem. Phys. 117 (2002), 7433; + J. Chem. Phys. 121 (2004), 12772 (E). + + Polarizability derivatives, Raman intensities + D. Rappoport and F. Furche, + J. Chem. Phys. 126 (2007), 201104. + + First-order nonadiabatic couplings + R. Send and F. Furche, + J. Chem. Phys. 132 (2010), 044107. + + + + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 -0.72557892 o 8.000 0 + 1.41713421 0.00000000 0.36278946 h 1.000 0 + -1.41713421 0.00000000 0.36278946 h 1.000 0 + + center of nuclear mass : 0.00000000 0.00000000 -0.60378908 + center of nuclear charge: 0.00000000 0.00000000 -0.50790524 + + ************************************************************************* + ridft_escf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 2 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 3 32 18 + --------------------------------------------------------------------------- + + total number of primitive shells : 16 + total number of contracted shells : 10 + total number of cartesian basis functions : 19 + total number of SCF-basis functions : 18 + + + residuum convergence criterium : 0.10E-04 + + + integral neglect threshold : 0.33E-10 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + RPA SINGLET-EXCITATION-CALCULATION + + FOUND DFT-FLAG ! + + + FOUND RI-J FLAG ! + + + AUXILIARY BASIS SET information: + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 39 37 def-SV(P) [6s3p3d1f|8s3p3d1f] + h 2 10 5 def-SV(P) [2s1p|4s2p] + --------------------------------------------------------------------------- + total: 3 59 47 + --------------------------------------------------------------------------- + + total number of primitive shells : 21 + total number of contracted shells : 19 + total number of cartesian basis functions : 53 + total number of SCF-basis functions : 47 + + + symmetry group of the molecule : c2v + + the group has the following generators : + c2(z) + mirror plane sigma(xz) + + 4 symmetry operations found + + there are 4 real representations : a1 a2 b1 b2 + + maximum number of shells which are related by symmetry : 2 + + IRREP of excited state : a1 + + + determining totally symmetric integral contributions + - equivalent to irreducible tensor elements - + which can be formed within each triple of representations : + + representation triple contributions + + a1 a1 a1 1 + a2 a2 a1 1 + b1 b1 a1 1 + b2 b2 a1 1 + + mo occupation : + irrep mo's occupied + a1 9 3 + a2 1 0 + b1 5 1 + b2 3 1 + + number of basis functions : 18 + number of occupied orbitals : 5 + + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 2 + partition function : becke + partition sharpness : 3 + + + ---------------------- + RI - INFORMATION + ---------------------- + + biggest AO integral is expected to be 4.776656448 + + Threshold for integral neglect (rithr2): 0.33E-10 + Threshold for integral neglect (rithr1): 0.33E-10 + + Contributions to RI integral batches: + neglected integral batches: 16 + direct contribution: 0 + memory contribution: 39 + Core memory available (ricore) 500 MiB + Core memory needed for (P|Q) and Cholesky 1 MiB + Core memory used for integrals 1 MiB + + **************************************** + Memory allocated for RIDFT 1 MiB + **************************************** + + MOs are in ASCII format ! + + + reading orbital data $scfmo from file mos + orbital characterization : scfconv=7 + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 1098 + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 9.999336695690088 + + + + number of non-frozen orbitals : 18 + number of non-frozen occupied orbitals : 5 + + + + ------------------- + excitation vector + ------------------- + + + dimension of super-tensorspace: 1 + + IRREP tensor space dimension number of roots + + a1 24 3 + + maximum number of Davidson iterations set to 35 + + + machine precision: 2.22D-16 + + + logfile sing_a1 will be constructed + + + Nonorthonormal Krylov Space Iteration + + + total number of roots to be determined: 3 + + + maximum core memory set to 500 MB, + corresponding to 151353 vectors in CAO basis + + + maximum number of simultaneously treated vectors (including degeneracy): 6 + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 1 a1 0 1.939690916493864D-01 + + 2 a1 0 2.980248193796169D-02 + + 3 a1 0 1.306174998529588D-03 + + 4 a1 3 7.306197245305287D-06 + + + converged! + + + Switching to fine grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 3891 + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 9.999998376409447 + + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 5 a1 0 2.319401871552961D-04 + + + NOTE: Residual norms are larger than 1.00D-05 due to mgrid option! + + Eigenpairs written on logfile sing_a1 + + + + IRREP Vector Eigenvalue Euclidean residual norm + + a1 1 1.269529911945098D-01 1.435476517396013D-04 + 2 4.033097284828305D-01 2.319401871552961D-04 + 3 8.990615877289541D-01 1.825065158750371D-04 + + + + + + + Selection rules for point group c2v + + + Subduction with respect to c2v : + + Polar vector representation: a1, b1, b2 + + Axial vector representation: a2, b1, b2 + + Symmetric second rank tensor representation: a1, a2, b1, b2 + + + + + Ground state + + + Total energy: -76.34300618247001 + + Charge: + + elec nuc total + + -10.000000 10.000000 -0.000000 + + + Electric dipole moment: + + elec nuc total + + x 0.000000 0.000000 0.000000 Norm: 0.833024 + y 0.000000 0.000000 0.000000 + z 5.912076 -5.079052 0.833024 Norm / debye: 2.117351 + + + Electric quadrupole moment: + + elec nuc total + + xx -7.255308 4.016539 -3.238769 + yy -5.263827 0.000000 -5.263827 1/3*trace: -4.613667 + zz -9.813356 4.474951 -5.338406 + xy 0.000000 0.000000 0.000000 + xz 0.000000 0.000000 0.000000 Anisotropy: 2.063359 + yz 0.000000 0.000000 0.000000 + + + + ============================================================================== + + I R R E P a1 + + ============================================================================== + + + Excitation is electric dipole allowed + + Excitation is magnetic dipole forbidden + + Excitation is electric quadrupole allowed + + + + + 1 singlet a1 excitation + + + Total energy: -75.98670154989486 + + Excitation energy: 0.3563046325751461 + + Excitation energy / eV: 9.695546514208587 + + Excitation energy / nm: 127.8775196682028 + + Excitation energy / cm^(-1): 78199.82765112937 + + + Oscillator strength: + + velocity representation: 0.1689002024191568 + + length representation: 0.7846609560737540E-01 + + mixed representation: 0.1151214116970714 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 4 a1 0.92 99.2 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.843238 + y 0.000000 + z 0.843238 Norm / debye: 2.143312 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.574746 + y 0.000000 + z 0.574746 Norm / debye: 1.460870 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 0.558280 + yy 0.090691 1/3*trace: 0.145317 + zz -0.213020 + xy 0.000000 + xz 0.000000 Anisotropy: 0.672973 + yz 0.000000 + + + + + 2 singlet a1 excitation + + + Total energy: -75.70793947063351 + + Excitation energy: 0.6350667118365050 + + Excitation energy / eV: 17.28105189016237 + + Excitation energy / nm: 71.74577380735093 + + Excitation energy / cm^(-1): 139381.0320501802 + + + Oscillator strength: + + velocity representation: 0.1206675243515526 + + length representation: 0.1188028214929186 + + mixed representation: 0.1197315428595569 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 2 b1 3.09 96.1 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.533865 + y 0.000000 + z 0.533865 Norm / debye: 1.356959 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.529724 + y 0.000000 + z 0.529724 Norm / debye: 1.346433 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 1.819326 + yy 0.168271 1/3*trace: 0.667268 + zz 0.014207 + xy 0.000000 + xz 0.000000 Anisotropy: 1.733230 + yz 0.000000 + + + + + 3 singlet a1 excitation + + + Total energy: -75.39481760010416 + + Excitation energy: 0.9481885823658467 + + Excitation energy / eV: 25.80153515862773 + + Excitation energy / nm: 48.05304926401228 + + Excitation energy / cm^(-1): 208103.3389487008 + + + Oscillator strength: + + velocity representation: 0.3576166987678396E-02 + + length representation: 0.5705805333778516E-02 + + mixed representation: 0.4517179725534289E-02 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 5 a1 17.22 75.2 + 2 a1 -24.72 4 a1 0.92 22.4 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.075215 + y 0.000000 + z -0.075215 Norm / debye: 0.191180 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.095007 + y 0.000000 + z -0.095007 Norm / debye: 0.241486 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx -0.044793 + yy -0.151784 1/3*trace: -0.205741 + zz -0.420645 + xy 0.000000 + xz 0.000000 Anisotropy: 0.335409 + yz 0.000000 + + SUMMARY OF EXCITATION ENERGIES AND DIPOLE OSCILLATOR STRENGTHS (velocity/length): + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a1 | 0.356305 | 9.69554 | 78199.828 | 127.878 | 0.16890 | 0.07847 | + | 2 a1 | 0.635067 | 17.28105 | 139381.032 | 71.746 | 0.12067 | 0.11880 | + | 3 a1 | 0.948189 | 25.80153 | 208103.339 | 48.053 | 0.00358 | 0.00571 | + ----------------------------------------------------------------------------------------------- + Transitions are magnetic dipole forbidden in irrep a1 + + + + IRREP tensor space dimension number of roots + + a1 24 3 + + + Data group $exopt missing or empty + Default state chosen: 3 + + + + Excited state no. 3 chosen for optimization + + + IRREP tensor space dimension number of roots + + a1 24 1 + + ---------------------- + CPKS right-hand side + ---------------------- + + + IRREP tensor space dimension number of roots + + a1 24 1 + + ---------------- + CPKS equations + ---------------- + + + logfile dipl_a1 will be constructed + + Switching to coarse grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 1098 + + + Nonorthonormal Krylov Space Iteration + + + total number of roots to be determined: 1 + + + maximum core memory set to 500 MB, + corresponding to 151353 vectors in CAO basis + + + maximum number of simultaneously treated vectors (including degeneracy): 1 + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 1 a1 0 1.184607663538645D-01 + + 2 a1 0 9.418872154697264D-03 + + 3 a1 0 8.558064401716414D-04 + + 4 a1 0 5.410901863758168D-05 + + 5 a1 1 1.400640266278741D-06 + + + converged! + + + Switching to fine grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 3891 + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 6 a1 0 4.718628404915467D-05 + + + NOTE: Residual norms are larger than 1.00D-05 due to mgrid option! + + Eigenpairs written on logfile dipl_a1 + + + + IRREP Vector Frequency Euclidean residual norm + + a1 1 0.000000000000000D+00 4.718628404915467D-05 + + + + ------------------- + relaxed densities + ------------------- + + + ---------------------------------------- + S+T+V CONTRIBUTIONS TO ENERGY GRADIENT + ---------------------------------------- + + 1e-integral 1st. derivatives will be neglected if expon. factor < 0.100000E-10 + + + ----------------------------------------------- + TWO ELECTRON CONTRIBUTIONS TO ENERGY GRADIENT + ----------------------------------------------- + + setting up bound for integral derivative estimation + + increment for numerical differentiation : 0.00050000 + + biggest AO integral is expected to be 4.776656448 + biggest cartesian 1st derivative AO integral is expected to be 8.648821438 + Integrated ground state density : 9.999998376409447 + + + ------------------------------------------------ + cartesian gradient of the energy (hartree/bohr) + ------------------------------------------------ + + ATOM 1 o 2 h 3 h +dE/dx 0.0000000D+00 -0.3672901D+00 0.3672901D+00 +dE/dy 0.0000000D+00 0.0000000D+00 0.0000000D+00 +dE/dz 0.1311139D+00 -0.6555727D-01 -0.6555727D-01 + + resulting FORCE (fx,fy,fz) = (0.000D+00,0.000D+00,-.642D-06) + resulting MOMENT (mx,my,mz) = (0.000D+00,0.000D+00,0.000D+00) + + + ********************************************************************** + |maximum component of gradient| : 0.36729006 (atom 2 h ) + gradient norm : 0.54368220 + ********************************************************************** + + exx = -1.040999 eyy = 0.000000 ezz = -0.142700 + eyz = 0.000000 exz = 0.000000 exy = 0.000000 + + + : data group $grad is missing + + *** cartesian gradients written onto *** + + + + ============================================================================== + electrostatic moments + ============================================================================== + + reference point for electrostatic moments: 0.00000 0.00000 0.00000 + + + nuc gs,e -> gs,tot excit -> total + ------------------------------------------------------------------------------ + charge + ------------------------------------------------------------------------------ + 10.000000 -10.000000 -0.000000 0.000000 -0.000000 + + ------------------------------------------------------------------------------ + dipole moment + ------------------------------------------------------------------------------ + x 0.000000 0.000000 0.000000 0.000000 0.000000 + y 0.000000 0.000000 0.000000 0.000000 0.000000 + z -5.079052 5.912076 0.833024 -0.840749 -0.007725 + + | dipole moment | = 0.0077 a.u. = 0.0196 debye + + ------------------------------------------------------------------------------ + quadrupole moment + ------------------------------------------------------------------------------ + xx 4.016539 -7.255308 -3.238769 -1.781190 -5.019959 + yy 0.000000 -5.263827 -5.263827 -0.850431 -6.114257 + zz 4.474951 -9.813356 -5.338406 0.159517 -5.178888 + xy 0.000000 0.000000 0.000000 0.000000 0.000000 + xz 0.000000 -0.000000 -0.000000 0.000000 -0.000000 + yz 0.000000 0.000000 0.000000 0.000000 0.000000 + + 1/3 trace= -5.437702 + anisotropy= 1.024125 + + ============================================================================== + + + + ------------------------------------------------------------------------ + total cpu-time : 0.24 seconds + total wall-time : 2.38 seconds + ------------------------------------------------------------------------ + + **** egrad : all done **** + + + 2023-01-25 00:18:46.480 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/ref_output.json new file mode 100644 index 0000000..b51ef70 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/ref_output.json @@ -0,0 +1,437 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "EgradOutput", + "@version": "1.3.0", + "gradients": [ + [ + 0.0, + 0.0, + 0.1311139 + ], + [ + -0.3672901, + 0.0, + -0.06555727 + ], + [ + 0.3672901, + 0.0, + -0.06555727 + ] + ], + "dielectric": [ + [ + -1.040999, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.1427 + ] + ], + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": { + "@module": "turbomoleio.output.data", + "@class": "RiData", + "@version": "1.3.0", + "ricore": 500, + "marij": false, + "rij_memory": 1, + "rik": false + }, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "escf": { + "@module": "turbomoleio.output.data", + "@class": "EscfData", + "@version": "1.3.0", + "calc_type": "RPA SINGLET-EXCITATION", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "EscfIterationData", + "@version": "1.3.0", + "steps": [ + [ + [ + "a1", + 0, + 0.1939690916493864 + ] + ], + [ + [ + "a1", + 0, + 0.02980248193796169 + ] + ], + [ + [ + "a1", + 0, + 0.001306174998529588 + ] + ], + [ + [ + "a1", + 3, + 7.306197245305287e-06 + ] + ] + ], + "converged": true + }, + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 5, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 151353, + "max_treated_vectors": 6, + "irrep_data": { + "a1": { + "tensor_space_dim": 24, + "n_roots": 3 + } + }, + "gs_tot_en": -76.34300618247, + "excitations": { + "a1": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.98670154989486, + "osc_stre": 0.0784660956073754, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.574746 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.435951, + "anisotropy": 0.672973, + "moment": [ + [ + 0.55828, + 0.0, + 0.0 + ], + [ + 0.0, + 0.090691, + 0.0 + ], + [ + 0.0, + 0.0, + -0.21302 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.7079394706335, + "osc_stre": 0.1188028214929186, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 96.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.529724 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 2.001804, + "anisotropy": 1.73323, + "moment": [ + [ + 1.819326, + 0.0, + 0.0 + ], + [ + 0.0, + 0.168271, + 0.0 + ], + [ + 0.0, + 0.0, + 0.014207 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.39481760010416, + "osc_stre": 0.005705805333778516, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 75.2 + }, + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 22.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.095007 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.6172230000000001, + "anisotropy": 0.335409, + "moment": [ + [ + -0.044793, + 0.0, + 0.0 + ], + [ + 0.0, + -0.151784, + 0.0 + ], + [ + 0.0, + 0.0, + -0.420645 + ] + ] + } + } + ] + } + ] + } + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790524 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "O", + "species": [ + { + "element": "O", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + -0.38395982917561094 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 0.7499151287230262, + 0.0, + 0.19197991458780547 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -0.7499151287230262, + 0.0, + 0.19197991458780547 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": 47 + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:44.173000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:46.480000" + }, + "cpu_time": 0.24, + "wall_time": 2.38 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "egrad" + }, + "cosmo": null, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 3.3e-11, + "thize": 1e-05, + "thime": 5 + }, + "ex_state": 3 +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/ref_parser.json new file mode 100644 index 0000000..c9c2c36 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h2o_sym/ref_parser.json @@ -0,0 +1,442 @@ +{ + "all_done": true, + "header": { + "executable": "egrad", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:44.173000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790524 + ] + }, + "coordinates": { + "coords": [ + [ + 0.0, + 0.0, + -0.72557892 + ], + [ + 1.41713421, + 0.0, + 0.36278946 + ], + [ + -1.41713421, + 0.0, + 0.36278946 + ] + ], + "species": [ + "o", + "h", + "h" + ], + "charges": [ + 8.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": 47 + }, + "symmetry": { + "symbol": "c2v", + "n_reps": 4, + "reps": [ + "a1", + "a2", + "b1", + "b2" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": { + "marij": false, + "rij_memory": 1, + "rik": false, + "ricore": 500 + }, + "dftd": null, + "pre_scf_run": null, + "scf_iterations": null, + "scf_energies": null, + "cosmo_results": null, + "electrostatic_moments": { + "unrestricted_electrons": null, + "charge": -0.0, + "dipole": { + "norm": 0.0077, + "moment": [ + 0.0, + 0.0, + -0.007725 + ] + }, + "quadrupole": { + "trace": -16.313105999999998, + "anisotropy": 1.024125, + "moment": [ + [ + -5.019959, + 0.0, + -0.0 + ], + [ + 0.0, + -6.114257, + 0.0 + ], + [ + -0.0, + 0.0, + -5.178888 + ] + ] + } + }, + "timings": { + "cpu_time": 0.24, + "wall_time": 2.38, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:46.480000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 3.3e-11, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": { + "calc_type": "RPA SINGLET-EXCITATION", + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 5, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 151353, + "max_treated_vectors": 6, + "irrep_data": { + "a1": { + "tensor_space_dim": 24, + "n_roots": 3 + } + } + }, + "escf_iterations": { + "steps": [ + [ + [ + "a1", + 0, + 0.1939690916493864 + ] + ], + [ + [ + "a1", + 0, + 0.02980248193796169 + ] + ], + [ + [ + "a1", + 0, + 0.001306174998529588 + ] + ], + [ + [ + "a1", + 3, + 7.306197245305287e-06 + ] + ] + ], + "converged": true + }, + "escf_gs_total_en": -76.34300618247, + "escf_excitations": { + "a1": [ + { + "tot_en": -75.98670154989486, + "osc_stre": 0.0784660956073754, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.574746 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.435951, + "anisotropy": 0.672973, + "moment": [ + [ + 0.55828, + 0.0, + 0.0 + ], + [ + 0.0, + 0.090691, + 0.0 + ], + [ + 0.0, + 0.0, + -0.21302 + ] + ] + } + } + ] + }, + { + "tot_en": -75.7079394706335, + "osc_stre": 0.1188028214929186, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 96.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.529724 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 2.001804, + "anisotropy": 1.73323, + "moment": [ + [ + 1.819326, + 0.0, + 0.0 + ], + [ + 0.0, + 0.168271, + 0.0 + ], + [ + 0.0, + 0.0, + 0.014207 + ] + ] + } + } + ] + }, + { + "tot_en": -75.39481760010416, + "osc_stre": 0.005705805333778516, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 75.2 + }, + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 22.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.095007 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.6172230000000001, + "anisotropy": 0.335409, + "moment": [ + [ + -0.044793, + 0.0, + 0.0 + ], + [ + 0.0, + -0.151784, + 0.0 + ], + [ + 0.0, + 0.0, + -0.420645 + ] + ] + } + } + ] + } + ] + }, + "rdgrad_memory": null, + "gradient": { + "gradients": [ + [ + 0.0, + 0.0, + 0.1311139 + ], + [ + -0.3672901, + 0.0, + -0.06555727 + ], + [ + 0.3672901, + 0.0, + -0.06555727 + ] + ], + "dielectric": [ + [ + -1.040999, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.1427 + ] + ] + }, + "egrad_excited_state": { + "index": 3, + "default": true + }, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/egrad.log b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/egrad.log new file mode 100644 index 0000000..432ded1 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/egrad.log @@ -0,0 +1,1349 @@ + + egrad (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:18:51.113 + + + + + e g r a d + + TURBOMOLE GmbH + + + integral direct evaluation of excited state + and polarizability gradients + and first-order nonadiabatic couplings + + + + references (see also programs escf, dscf and ridft) + + review + F. Furche and D. Rappoport, + "Density functional methods for excited states: + equilibrium structure and electronic spectra", + ch. III of "Computational Photochemistry", ed. by + M. Olivucci, vol. 16 of "Theoretical and Computational + Chemistry", Elsevier, Amsterdam, 2005. + + nonorthonormal Krylov space methods + F. Furche, B. T. Krull, B. D. Nguyen, J. Kwon, + J. Chem. Phys. 144 (2016), 174105. + + RI-J method + D. Rappoport and F. Furche, + J. Chem. Phys. 122 (2005), 064105. + + Lagrangian method, implementation, benchmarks + F. Furche and R. Ahlrichs, + J. Chem. Phys. 117 (2002), 7433; + J. Chem. Phys. 121 (2004), 12772 (E). + + Polarizability derivatives, Raman intensities + D. Rappoport and F. Furche, + J. Chem. Phys. 126 (2007), 201104. + + First-order nonadiabatic couplings + R. Send and F. Furche, + J. Chem. Phys. 132 (2010), 044107. + + + + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 -3.04112594 c 6.000 0 + 0.97212284 1.68376616 -3.67601852 h 1.000 0 + 0.97212284 -1.68376616 -3.67601852 h 1.000 0 + -1.94424569 0.00000000 -3.67601852 h 1.000 0 + 0.00000000 0.00000000 0.59622031 br 35.000 0 + + center of nuclear mass : 0.00000000 0.00000000 0.00000000 + center of nuclear charge: 0.00000000 0.00000000 -0.19107046 + + ************************************************************************* + dscf_escf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + c 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 3 4 2 def-SV(P) [2s|4s] + br 1 74 32 def-SV(P) [5s4p3d|14s10p6d] + --------------------------------------------------------------------------- + total: 5 110 52 + --------------------------------------------------------------------------- + + total number of primitive shells : 46 + total number of contracted shells : 24 + total number of cartesian basis functions : 56 + total number of SCF-basis functions : 52 + + + residuum convergence criterium : 0.10E-04 + + + integral neglect threshold : 0.33E-10 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + RPA SINGLET-EXCITATION-CALCULATION + + FOUND DFT-FLAG ! + + + symmetry group of the molecule : c1 + + the group has the following generators : + c1(z) + + 1 symmetry operations found + + there are 1 real representations : a + + maximum number of shells which are related by symmetry : 1 + + IRREP of excited state : a + + + determining totally symmetric integral contributions + - equivalent to irreducible tensor elements - + which can be formed within each triple of representations : + + representation triple contributions + + a a a 1 + + mo occupation : + irrep mo's occupied + a 52 22 + + number of basis functions : 52 + number of occupied orbitals : 22 + + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 5 + partition function : becke + partition sharpness : 3 + + + biggest AO integral is expected to be 21.668154127 + MOs are in ASCII format ! + + + reading orbital data $scfmo from file mos + orbital characterization : scfconv=7 + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 7239 + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 43.99958460687699 + + + + number of non-frozen orbitals : 52 + number of non-frozen occupied orbitals : 22 + + + + ------------------- + excitation vector + ------------------- + + + dimension of super-tensorspace: 1 + + IRREP tensor space dimension number of roots + + a 660 10 + + maximum number of Davidson iterations set to 35 + + + machine precision: 2.22D-16 + + + logfile sing_a will be constructed + + + Nonorthonormal Krylov Space Iteration + + + total number of roots to be determined: 10 + + + maximum core memory set to 500 MB, + corresponding to 19574 vectors in CAO basis + + + maximum number of simultaneously treated vectors (including degeneracy): 18 + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 1 a 0 1.104386619886686D-01 + + 2 a 0 1.902291898698895D-02 + + 3 a 1 1.947444159125122D-03 + + 4 a 3 3.571762018184652D-04 + + 5 a 7 4.812820204236434D-05 + + 6 a 10 8.137193887116020D-06 + + + converged! + + + Switching to fine grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 26176 + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 43.99999821247488 + + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 7 a 0 6.542429715608330D-05 + + + NOTE: Residual norms are larger than 1.00D-05 due to mgrid option! + + Eigenpairs written on logfile sing_a + + + + IRREP Vector Eigenvalue Euclidean residual norm + + a 1 5.269336246055234D-02 2.645478730425349D-05 + 2 5.270288009901038D-02 2.216277891016276D-05 + 3 8.897711088151687D-02 5.991406726155704D-05 + 4 8.898823387628767D-02 3.602868681480302D-05 + 5 1.143532453863001D-01 3.563924925936307D-05 + 6 1.153715401869876D-01 6.214614830637916D-05 + 7 1.153764242650014D-01 2.181209067902979D-05 + 8 1.167699081899149D-01 5.751062360370067D-05 + 9 1.509435187985302D-01 5.321605818187117D-05 + 10 1.509626845321396D-01 6.542429715608330D-05 + + + + + + + Selection rules for point group c1 + + + Subduction with respect to c1 : + + Polar vector representation: a + + Axial vector representation: a + + Symmetric second rank tensor representation: a + + + + + Ground state + + + Total energy: -2614.005271607000 + + Charge: + + elec nuc total + + -44.000000 44.000000 -0.000000 + + + Electric dipole moment: + + elec nuc total + + x 0.000330 0.000000 0.000330 Norm: 0.683946 + y 0.000000 0.000000 0.000000 + z 7.723155 -8.407100 -0.683946 Norm / debye: 1.738430 + + + Electric quadrupole moment: + + elec nuc total + + xx -24.580334 5.670137 -18.910197 + yy -24.579829 5.670137 -18.909692 1/3*trace: -17.982284 + zz -124.598736 108.471772 -16.126964 + xy 0.000000 0.000000 0.000000 + xz -0.000361 0.000000 -0.000361 Anisotropy: 2.782981 + yz 0.000000 0.000000 0.000000 + + + + ============================================================================== + + I R R E P a + + ============================================================================== + + + Excitation is electric dipole allowed + + Excitation is magnetic dipole allowed + + Excitation is electric quadrupole allowed + + + + + 1 singlet a excitation + + + Total energy: -2613.775721258578 + + Excitation energy: 0.2295503484217620 + + Excitation energy / eV: 6.246385471866101 + + Excitation energy / nm: 198.4895817987809 + + Excitation energy / cm^(-1): 50380.47794692255 + + + Oscillator strength: + + velocity representation: 0.1874376708800732E-03 + + length representation: 0.7973690669882280E-05 + + mixed representation: 0.3862082055225426E-04 + + + Rotatory strength: + + velocity representation: 0.3443918222886711E-15 + + velocity rep. / 10^(-40)erg*cm^3: 0.2224937045077348E-10 + + length representation: -0.4217176920994932E-15 + + length rep. / 10^(-40)erg*cm^3: -0.2724499407335523E-10 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 22 a -6.50 23 a -0.66 99.6 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.034997 Norm: 0.034997 + y 0.000000 + z -0.000188 Norm / debye: 0.088955 + + + Electric transition dipole moment (length rep.): + + x 0.007213 Norm: 0.007218 + y -0.000000 + z -0.000285 Norm / debye: 0.018347 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.001695 + y 0.001695 + z -0.000000 Norm / Bohr mag.: 0.464440 + + + Electric quadrupole transition moment: + + xx 0.091857 + yy -0.091224 1/3*trace: 0.000528 + zz 0.000951 + xy 0.000000 + xz -0.068729 Anisotropy: 0.198269 + yz 0.000000 + + + + + 2 singlet a excitation + + + Total energy: -2613.775700528467 + + Excitation energy: 0.2295710785334476 + + Excitation energy / eV: 6.246949567147826 + + Excitation energy / nm: 198.4716583250342 + + Excitation energy / cm^(-1): 50385.02768052912 + + + Oscillator strength: + + velocity representation: 0.1866474457253048E-03 + + length representation: 0.8181619354680342E-05 + + mixed representation: 0.3907784992099492E-04 + + + Rotatory strength: + + velocity representation: -0.1027297157898285E-14 + + velocity rep. / 10^(-40)erg*cm^3: -0.6636834428068115E-10 + + length representation: -0.1092918310414970E-14 + + length rep. / 10^(-40)erg*cm^3: -0.7060778679138806E-10 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 21 a -6.50 23 a -0.66 99.6 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.034922 + y 0.034922 + z 0.000000 Norm / debye: 0.088763 + + + Electric transition dipole moment (length rep.): + + x -0.000000 Norm: 0.007312 + y -0.007312 + z 0.000000 Norm / debye: 0.018584 + + + Magnetic transition dipole moment / i: + + x 0.001693 Norm: 0.001693 + y -0.000000 + z 0.000000 Norm / Bohr mag.: 0.463986 + + + Electric quadrupole transition moment: + + xx -0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.091425 + xz 0.000000 Anisotropy: 0.198657 + yz 0.069255 + + + + + 3 singlet a excitation + + + Total energy: -2613.706981293913 + + Excitation energy: 0.2982903130869604 + + Excitation energy / eV: 8.116895883082616 + + Excitation energy / nm: 152.7483483740115 + + Excitation energy / cm^(-1): 65467.15630614802 + + + Oscillator strength: + + velocity representation: 0.1073027892341213E-03 + + length representation: 0.7777246408912506E-05 + + mixed representation: 0.2888502825444619E-04 + + + Rotatory strength: + + velocity representation: 0.8229512014034795E-15 + + velocity rep. / 10^(-40)erg*cm^3: 0.5316661127797466E-10 + + length representation: 0.1138403339045834E-14 + + length rep. / 10^(-40)erg*cm^3: 0.7354633871531807E-10 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 22 a -6.50 24 a 1.60 99.8 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.023222 Norm: 0.023229 + y -0.000000 + z -0.000562 Norm / debye: 0.059043 + + + Electric transition dipole moment (length rep.): + + x -0.006253 Norm: 0.006254 + y -0.000000 + z -0.000061 Norm / debye: 0.015896 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.002314 + y -0.002314 + z 0.000000 Norm / Bohr mag.: 0.634145 + + + Electric quadrupole transition moment: + + xx -0.292201 + yy 0.291387 1/3*trace: -0.000338 + zz -0.000200 + xy 0.000000 + xz -1.084304 Anisotropy: 1.944884 + yz -0.000000 + + + + + 4 singlet a excitation + + + Total energy: -2613.706962649916 + + Excitation energy: 0.2983089570835707 + + Excitation energy / eV: 8.117403212260571 + + Excitation energy / nm: 152.7388017626152 + + Excitation energy / cm^(-1): 65471.24819041884 + + + Oscillator strength: + + velocity representation: 0.1075867217524565E-03 + + length representation: 0.7954267519213227E-05 + + mixed representation: 0.2925360774903150E-04 + + + Rotatory strength: + + velocity representation: -0.3361349873813562E-14 + + velocity rep. / 10^(-40)erg*cm^3: -0.2171593914748967E-09 + + length representation: -0.3198724574684410E-14 + + length rep. / 10^(-40)erg*cm^3: -0.2066530138816464E-09 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 21 a -6.50 24 a 1.60 99.8 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.023259 + y -0.023259 + z -0.000000 Norm / debye: 0.059119 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.006324 + y -0.006324 + z -0.000000 Norm / debye: 0.016075 + + + Magnetic transition dipole moment / i: + + x 0.002316 Norm: 0.002316 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.634699 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy -0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.291982 + xz 0.000000 Anisotropy: 1.945663 + yz -1.084719 + + + + + 5 singlet a excitation + + + Total energy: -2613.667110040014 + + Excitation energy: 0.3381615669858125 + + Excitation energy / eV: 9.201848368718936 + + Excitation energy / nm: 134.7384123693501 + + Excitation energy / cm^(-1): 74217.88503114450 + + + Oscillator strength: + + velocity representation: 0.8533283871364345E-06 + + length representation: 0.3451235507532225E-06 + + mixed representation: 0.5426819721780398E-06 + + + Rotatory strength: + + velocity representation: 0.4091426574037228E-14 + + velocity rep. / 10^(-40)erg*cm^3: 0.2643258626553275E-09 + + length representation: 0.3915471215385321E-14 + + length rep. / 10^(-40)erg*cm^3: 0.2529582990139252E-09 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 22 a -6.50 25 a 2.71 51.1 + 21 a -6.50 26 a 2.71 48.9 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.000000 Norm: 0.001946 + y -0.001946 + z 0.000000 Norm / debye: 0.004945 + + + Electric transition dipole moment (length rep.): + + x -0.000000 Norm: 0.001237 + y -0.001237 + z 0.000000 Norm / debye: 0.003145 + + + Magnetic transition dipole moment / i: + + x -0.000026 Norm: 0.001177 + y 0.000000 + z 0.001177 Norm / Bohr mag.: 0.322678 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy -0.000000 1/3*trace: -0.000000 + zz -0.000000 + xy -0.000342 + xz 0.000000 Anisotropy: 0.021206 + yz 0.012238 + + + + + 6 singlet a excitation + + + Total energy: -2613.665607743472 + + Excitation energy: 0.3396638635283236 + + Excitation energy / eV: 9.242727955102028 + + Excitation energy / nm: 134.1424789399200 + + Excitation energy / cm^(-1): 74547.60101001403 + + + Oscillator strength: + + velocity representation: 0.5018095102488236E-02 + + length representation: 0.2845517535934603E-02 + + mixed representation: 0.3778753045384154E-02 + + + Rotatory strength: + + velocity representation: -0.4824862741497650E-15 + + velocity rep. / 10^(-40)erg*cm^3: -0.3117093715998118E-10 + + length representation: 0.2242401648677876E-16 + + length rep. / 10^(-40)erg*cm^3: 0.1448699468219065E-11 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 22 a -6.50 26 a 2.71 50.3 + 21 a -6.50 25 a 2.71 49.5 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.148854 Norm: 0.148864 + y 0.000000 + z 0.001771 Norm / debye: 0.378378 + + + Electric transition dipole moment (length rep.): + + x 0.112087 Norm: 0.112099 + y 0.000000 + z 0.001634 Norm / debye: 0.284929 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.002253 + y -0.002253 + z 0.000000 Norm / Bohr mag.: 0.617611 + + + Electric quadrupole transition moment: + + xx -0.057449 + yy 0.056006 1/3*trace: -0.002577 + zz -0.006287 + xy 0.000000 + xz -1.101749 Anisotropy: 1.910822 + yz -0.000000 + + + + + 7 singlet a excitation + + + Total energy: -2613.665600553972 + + Excitation energy: 0.3396710530277807 + + Excitation energy / eV: 9.242923591420018 + + Excitation energy / nm: 134.1396396715428 + + Excitation energy / cm^(-1): 74549.17892275228 + + + Oscillator strength: + + velocity representation: 0.4993404807574566E-02 + + length representation: 0.2815298074725997E-02 + + mixed representation: 0.3749389675812880E-02 + + + Rotatory strength: + + velocity representation: 0.2271534556007381E-15 + + velocity rep. / 10^(-40)erg*cm^3: 0.1467520729513095E-10 + + length representation: -0.1914477435208092E-15 + + length rep. / 10^(-40)erg*cm^3: -0.1236844632155271E-10 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 21 a -6.50 26 a 2.71 51.0 + 22 a -6.50 25 a 2.71 48.8 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.148496 + y -0.148496 + z -0.000000 Norm / debye: 0.377442 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.111501 + y -0.111501 + z -0.000000 Norm / debye: 0.283409 + + + Magnetic transition dipole moment / i: + + x -0.002254 Norm: 0.002254 + y -0.000000 + z -0.000013 Norm / Bohr mag.: 0.617649 + + + Electric quadrupole transition moment: + + xx -0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy -0.056153 + xz -0.000000 Anisotropy: 1.906516 + yz 1.099294 + + + + + 8 singlet a excitation + + + Total energy: -2613.663555484773 + + Excitation energy: 0.3417161222270833 + + Excitation energy / eV: 9.298572779597306 + + Excitation energy / nm: 133.3368538863421 + + Excitation energy / cm^(-1): 74998.01973002516 + + + Oscillator strength: + + velocity representation: 0.3548900870746251E-01 + + length representation: 0.3127875409605586E-01 + + mixed representation: 0.3331743494423607E-01 + + + Rotatory strength: + + velocity representation: -0.3734965632042972E-14 + + velocity rep. / 10^(-40)erg*cm^3: -0.2412967689417897E-09 + + length representation: -0.3507404109756671E-14 + + length rep. / 10^(-40)erg*cm^3: -0.2265951985733564E-09 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 21 a -6.50 25 a 2.71 48.9 + 22 a -6.50 26 a 2.71 48.1 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000598 Norm: 0.394693 + y 0.000000 + z -0.394693 Norm / debye: 1.003218 + + + Electric transition dipole moment (length rep.): + + x 0.000312 Norm: 0.370542 + y 0.000000 + z -0.370542 Norm / debye: 0.941831 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000010 + y -0.000010 + z 0.000000 Norm / Bohr mag.: 0.002760 + + + Electric quadrupole transition moment: + + xx 0.178594 + yy 0.178825 1/3*trace: 0.602688 + zz 1.450645 + xy -0.000000 + xz -0.004183 Anisotropy: 1.271956 + yz -0.000000 + + + + + 9 singlet a excitation + + + Total energy: -2613.616757104312 + + Excitation energy: 0.3885145026875190 + + Excitation energy / eV: 10.57202205042061 + + Excitation energy / nm: 117.2758091263493 + + Excitation energy / cm^(-1): 85269.07699893738 + + + Oscillator strength: + + velocity representation: 0.1078092605577343E-01 + + length representation: 0.9014111779556780E-02 + + mixed representation: 0.9858015649910377E-02 + + + Rotatory strength: + + velocity representation: -0.1512884123499743E-14 + + velocity rep. / 10^(-40)erg*cm^3: -0.9773960104263138E-10 + + length representation: -0.1391349007115093E-14 + + length rep. / 10^(-40)erg*cm^3: -0.8988784716168882E-10 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 19 a -10.95 23 a -0.66 99.7 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.000000 Norm: 0.204019 + y -0.204019 + z 0.000000 Norm / debye: 0.518568 + + + Electric transition dipole moment (length rep.): + + x -0.000000 Norm: 0.186554 + y -0.186554 + z 0.000000 Norm / debye: 0.474175 + + + Magnetic transition dipole moment / i: + + x 0.001684 Norm: 0.001684 + y -0.000000 + z 0.000000 Norm / Bohr mag.: 0.461490 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy -0.000000 1/3*trace: -0.000000 + zz -0.000000 + xy -0.162467 + xz 0.000000 Anisotropy: 1.761935 + yz 1.004196 + + + + + 10 singlet a excitation + + + Total energy: -2613.616732439692 + + Excitation energy: 0.3885391673076726 + + Excitation energy / eV: 10.57269320917099 + + Excitation energy / nm: 117.2683644115594 + + Excitation energy / cm^(-1): 85274.49025733696 + + + Oscillator strength: + + velocity representation: 0.1084619388674289E-01 + + length representation: 0.9071251670532842E-02 + + mixed representation: 0.9919087687389255E-02 + + + Rotatory strength: + + velocity representation: -0.3759820374452775E-15 + + velocity rep. / 10^(-40)erg*cm^3: -0.2429025050119997E-10 + + length representation: -0.1946472499338951E-15 + + length rep. / 10^(-40)erg*cm^3: -0.1257514984596075E-10 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 18 a -10.96 23 a -0.66 99.7 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.204509 Norm: 0.204629 + y -0.000000 + z 0.007015 Norm / debye: 0.520119 + + + Electric transition dipole moment (length rep.): + + x 0.187017 Norm: 0.187138 + y -0.000000 + z 0.006716 Norm / debye: 0.475661 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.001681 + y 0.001681 + z 0.000000 Norm / Bohr mag.: 0.460837 + + + Electric quadrupole transition moment: + + xx -0.166266 + yy 0.160750 1/3*trace: -0.008098 + zz -0.018779 + xy -0.000000 + xz -1.006165 Anisotropy: 1.765663 + yz 0.000000 + + SUMMARY OF EXCITATION ENERGIES AND DIPOLE OSCILLATOR STRENGTHS (velocity/length): + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a | 0.229550 | 6.24638 | 50380.478 | 198.490 | 0.00019 | 0.00001 | + | 2 a | 0.229571 | 6.24695 | 50385.028 | 198.472 | 0.00019 | 0.00001 | + | 3 a | 0.298290 | 8.11689 | 65467.156 | 152.748 | 0.00011 | 0.00001 | + | 4 a | 0.298309 | 8.11740 | 65471.248 | 152.739 | 0.00011 | 0.00001 | + | 5 a | 0.338162 | 9.20184 | 74217.885 | 134.738 | 0.00000 | 0.00000 | + | 6 a | 0.339664 | 9.24272 | 74547.601 | 134.142 | 0.00502 | 0.00285 | + | 7 a | 0.339671 | 9.24292 | 74549.179 | 134.140 | 0.00499 | 0.00282 | + | 8 a | 0.341716 | 9.29857 | 74998.020 | 133.337 | 0.03549 | 0.03128 | + | 9 a | 0.388515 | 10.57202 | 85269.077 | 117.276 | 0.01078 | 0.00901 | + | 10 a | 0.388539 | 10.57269 | 85274.490 | 117.268 | 0.01085 | 0.00907 | + ----------------------------------------------------------------------------------------------- + + + + IRREP tensor space dimension number of roots + + a 660 10 + + + Data group $exopt missing or empty + Default state chosen: 10 + + + + Excited state no. 10 chosen for optimization + + + IRREP tensor space dimension number of roots + + a 660 1 + + ---------------------- + CPKS right-hand side + ---------------------- + + + IRREP tensor space dimension number of roots + + a 660 1 + + ---------------- + CPKS equations + ---------------- + + + logfile dipl_a will be constructed + + Switching to coarse grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 7239 + + + Nonorthonormal Krylov Space Iteration + + + total number of roots to be determined: 1 + + + maximum core memory set to 500 MB, + corresponding to 19574 vectors in CAO basis + + + maximum number of simultaneously treated vectors (including degeneracy): 1 + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 1 a 0 9.743469059530967D-02 + + 2 a 0 1.990920547140672D-02 + + 3 a 0 6.996988041876034D-03 + + 4 a 0 9.481661616143224D-04 + + 5 a 0 1.415418661365726D-04 + + 6 a 0 3.134156472262940D-05 + + 7 a 1 4.261491170239483D-06 + + + converged! + + + Switching to fine grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 26176 + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 8 a 0 2.468073088118960D-05 + + + NOTE: Residual norms are larger than 1.00D-05 due to mgrid option! + + Eigenpairs written on logfile dipl_a + + + + IRREP Vector Frequency Euclidean residual norm + + a 1 0.000000000000000D+00 2.468073088118960D-05 + + + + ------------------- + relaxed densities + ------------------- + + + ---------------------------------------- + S+T+V CONTRIBUTIONS TO ENERGY GRADIENT + ---------------------------------------- + + 1e-integral 1st. derivatives will be neglected if expon. factor < 0.100000E-10 + + + ----------------------------------------------- + TWO ELECTRON CONTRIBUTIONS TO ENERGY GRADIENT + ----------------------------------------------- + + biggest 1-particle AO density matrix element is expected to be 3.2223765705 + + core memory to be involved in 2e-gradient : + symmetry shell pair data : 1 + two particle density+dens. estimates : 1596 + derivative integrals : 8498 + derivative integral bound : 900 + totally : 9396 + + + setting up bound for integral derivative estimation + + increment for numerical differentiation : 0.00050000 + + biggest AO integral is expected to be 21.668154127 + biggest cartesian 1st derivative AO integral is expected to be 83.347447328 + + 2e-integral 1st. derivatives will be neglected if expon. factor < 0.100000E-06 + outer boundary for 2e-integral derivative neglection is 0.160508E-08 + + Integrated ground state density : 43.99999821247506 + + + ------------------------------------------------ + cartesian gradient of the energy (hartree/bohr) + ------------------------------------------------ + + ATOM 1 c 2 h 3 h 4 h 5 br +dE/dx -0.9995971D-01 0.1575100D-01 0.1575100D-01 0.7003746D-01 -0.1572360D-02 +dE/dy -0.5400182D-09 -0.4220280D-01 0.4220280D-01 0.3083048D-09 0.1328706D-09 +dE/dz 0.6344875D-01 0.2783363D-01 0.2783363D-01 0.6391954D-01 -0.1830458D+00 + + resulting FORCE (fx,fy,fz) = (0.738D-05,0.535D-13,-.102D-04) + resulting MOMENT (mx,my,mz) = (-.340D-09,-.484D-04,-.474D-09) + + + ********************************************************************** + |maximum component of gradient| : 0.18304580 (atom 5 br) + gradient norm : 0.24924815 + ********************************************************************** + + exx = -0.105546 eyy = -0.142119 ezz = -0.741695 + eyz = 0.000000 exz = -0.070184 exy = -0.000000 + + + : data group $grad is missing + + *** cartesian gradients written onto *** + + + + ============================================================================== + electrostatic moments + ============================================================================== + + reference point for electrostatic moments: 0.00000 0.00000 0.00000 + + + nuc gs,e -> gs,tot excit -> total + ------------------------------------------------------------------------------ + charge + ------------------------------------------------------------------------------ + 44.000000 -44.000000 0.000000 0.000000 0.000000 + + ------------------------------------------------------------------------------ + dipole moment + ------------------------------------------------------------------------------ + x 0.000000 0.000330 0.000330 -0.219984 -0.219654 + y 0.000000 0.000000 0.000000 -0.000000 -0.000000 + z -8.407100 7.723155 -0.683946 -1.040346 -1.724291 + + | dipole moment | = 1.7382 a.u. = 4.4181 debye + + ------------------------------------------------------------------------------ + quadrupole moment + ------------------------------------------------------------------------------ + xx 5.670137 -24.580334 -18.910197 1.118252 -17.791945 + yy 5.670137 -24.579829 -18.909692 -0.351879 -19.261571 + zz 108.471772 -124.598736 -16.126964 -0.293496 -16.420460 + xy 0.000000 0.000000 0.000000 -0.000000 -0.000000 + xz 0.000000 -0.000361 -0.000361 0.878984 0.878623 + yz 0.000000 0.000000 0.000000 0.000000 0.000000 + + 1/3 trace= -17.824659 + anisotropy= 2.893489 + + ============================================================================== + + + + ------------------------------------------------------------------------ + total cpu-time : 3.21 seconds + total wall-time : 5.58 seconds + ------------------------------------------------------------------------ + + **** egrad : all done **** + + + 2023-01-25 00:18:56.545 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/ref_output.json new file mode 100644 index 0000000..fe68dd8 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/ref_output.json @@ -0,0 +1,949 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "EgradOutput", + "@version": "1.3.0", + "gradients": [ + [ + -0.09995971, + -5.400182e-10, + 0.06344875 + ], + [ + 0.015751, + -0.0422028, + 0.02783363 + ], + [ + 0.015751, + 0.0422028, + 0.02783363 + ], + [ + 0.07003746, + 3.083048e-10, + 0.06391954 + ], + [ + -0.00157236, + 1.328706e-10, + -0.1830458 + ] + ], + "dielectric": [ + [ + -0.105546, + -0.0, + -0.070184 + ], + [ + -0.0, + -0.142119, + 0.0 + ], + [ + -0.070184, + 0.0, + -0.741695 + ] + ], + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": null, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "escf": { + "@module": "turbomoleio.output.data", + "@class": "EscfData", + "@version": "1.3.0", + "calc_type": "RPA SINGLET-EXCITATION", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "EscfIterationData", + "@version": "1.3.0", + "steps": [ + [ + [ + "a", + 0, + 0.1104386619886686 + ] + ], + [ + [ + "a", + 0, + 0.01902291898698895 + ] + ], + [ + [ + "a", + 1, + 0.001947444159125122 + ] + ], + [ + [ + "a", + 3, + 0.0003571762018184652 + ] + ], + [ + [ + "a", + 7, + 4.812820204236434e-05 + ] + ], + [ + [ + "a", + 10, + 8.13719388711602e-06 + ] + ] + ], + "converged": true + }, + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 22, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 19574, + "max_treated_vectors": 18, + "irrep_data": { + "a": { + "tensor_space_dim": 660, + "n_roots": 10 + } + }, + "gs_tot_en": -2614.005271607, + "excitations": { + "a": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.775721258578, + "osc_stre": 7.97369066988228e-06, + "rot_stre": -4.217176920994932e-16, + "dominant_contributions": [ + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 23, + "irrep": "a", + "energy": -0.66, + "spin": null + }, + "coeff": 99.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.007213, + -0.0, + -0.000285 + ], + "magnetic_dipole": [ + 0.0, + 0.001695, + -0.0 + ], + "electric_quadrupole": { + "trace": 0.0015840000000000001, + "anisotropy": 0.198269, + "moment": [ + [ + 0.091857, + 0.0, + -0.068729 + ], + [ + 0.0, + -0.091224, + 0.0 + ], + [ + -0.068729, + 0.0, + 0.000951 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.775700528467, + "osc_stre": 8.181619354680342e-06, + "rot_stre": -1.09291831041497e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 23, + "irrep": "a", + "energy": -0.66, + "spin": null + }, + "coeff": 99.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.0, + -0.007312, + 0.0 + ], + "magnetic_dipole": [ + 0.001693, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.198657, + "moment": [ + [ + -0.0, + 0.091425, + 0.0 + ], + [ + 0.091425, + 0.0, + 0.069255 + ], + [ + 0.0, + 0.069255, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.706981293913, + "osc_stre": 7.777246408912506e-06, + "rot_stre": 1.138403339045834e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 24, + "irrep": "a", + "energy": 1.6, + "spin": null + }, + "coeff": 99.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.006253, + -0.0, + -6.1e-05 + ], + "magnetic_dipole": [ + 0.0, + -0.002314, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.001014, + "anisotropy": 1.944884, + "moment": [ + [ + -0.292201, + 0.0, + -1.084304 + ], + [ + 0.0, + 0.291387, + -0.0 + ], + [ + -1.084304, + -0.0, + -0.0002 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.706962649916, + "osc_stre": 7.954267519213227e-06, + "rot_stre": -3.19872457468441e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 24, + "irrep": "a", + "energy": 1.6, + "spin": null + }, + "coeff": 99.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.006324, + -0.0 + ], + "magnetic_dipole": [ + 0.002316, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.945663, + "moment": [ + [ + 0.0, + 0.291982, + 0.0 + ], + [ + 0.291982, + -0.0, + -1.084719 + ], + [ + 0.0, + -1.084719, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.667110040014, + "osc_stre": 3.451235507532225e-07, + "rot_stre": 3.915471215385321e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 25, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 51.1 + }, + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 26, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 48.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.0, + -0.001237, + 0.0 + ], + "magnetic_dipole": [ + -2.6e-05, + 0.0, + 0.001177 + ], + "electric_quadrupole": { + "trace": -0.0, + "anisotropy": 0.021206, + "moment": [ + [ + 0.0, + -0.000342, + 0.0 + ], + [ + -0.000342, + -0.0, + 0.012238 + ], + [ + 0.0, + 0.012238, + -0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.665607743472, + "osc_stre": 0.002845517535934603, + "rot_stre": 2.242401648677876e-17, + "dominant_contributions": [ + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 26, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 50.3 + }, + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 25, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 49.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.112087, + 0.0, + 0.001634 + ], + "magnetic_dipole": [ + 0.0, + -0.002253, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.007731, + "anisotropy": 1.910822, + "moment": [ + [ + -0.057449, + 0.0, + -1.101749 + ], + [ + 0.0, + 0.056006, + -0.0 + ], + [ + -1.101749, + -0.0, + -0.006287 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.665600553972, + "osc_stre": 0.002815298074725997, + "rot_stre": -1.914477435208092e-16, + "dominant_contributions": [ + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 26, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 51.0 + }, + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 25, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 48.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.111501, + -0.0 + ], + "magnetic_dipole": [ + -0.002254, + -0.0, + -1.3e-05 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.906516, + "moment": [ + [ + -0.0, + -0.056153, + -0.0 + ], + [ + -0.056153, + 0.0, + 1.099294 + ], + [ + -0.0, + 1.099294, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.663555484773, + "osc_stre": 0.03127875409605586, + "rot_stre": -3.507404109756671e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 25, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 48.9 + }, + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 26, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 48.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.000312, + 0.0, + -0.370542 + ], + "magnetic_dipole": [ + 0.0, + -1e-05, + 0.0 + ], + "electric_quadrupole": { + "trace": 1.808064, + "anisotropy": 1.271956, + "moment": [ + [ + 0.178594, + -0.0, + -0.004183 + ], + [ + -0.0, + 0.178825, + -0.0 + ], + [ + -0.004183, + -0.0, + 1.450645 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.616757104312, + "osc_stre": 0.00901411177955678, + "rot_stre": -1.391349007115093e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 19, + "irrep": "a", + "energy": -10.95, + "spin": null + }, + "virt_orb": { + "index": 23, + "irrep": "a", + "energy": -0.66, + "spin": null + }, + "coeff": 99.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.0, + -0.186554, + 0.0 + ], + "magnetic_dipole": [ + 0.001684, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.0, + "anisotropy": 1.761935, + "moment": [ + [ + 0.0, + -0.162467, + 0.0 + ], + [ + -0.162467, + -0.0, + 1.004196 + ], + [ + 0.0, + 1.004196, + -0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -2613.616732439692, + "osc_stre": 0.009071251670532842, + "rot_stre": -1.946472499338951e-16, + "dominant_contributions": [ + { + "occ_orb": { + "index": 18, + "irrep": "a", + "energy": -10.96, + "spin": null + }, + "virt_orb": { + "index": 23, + "irrep": "a", + "energy": -0.66, + "spin": null + }, + "coeff": 99.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.187017, + -0.0, + 0.006716 + ], + "magnetic_dipole": [ + 0.0, + 0.001681, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.024293999999999996, + "anisotropy": 1.765663, + "moment": [ + [ + -0.166266, + -0.0, + -1.006165 + ], + [ + -0.0, + 0.16075, + 0.0 + ], + [ + -1.006165, + 0.0, + -0.018779 + ] + ] + } + } + ] + } + ] + } + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + 0.0, + 0.0, + 0.0 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.19107046 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "C", + "species": [ + { + "element": "C", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + -1.609294542933964 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 0.5144252531263033, + 0.8910106803616544, + -1.9452652276413738 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 0.5144252531263033, + -0.8910106803616544, + -1.9452652276413738 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -1.0288505115443787, + 0.0, + -1.9452652276413738 + ], + "properties": {} + }, + { + "name": "Br", + "species": [ + { + "element": "Br", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + 0.315506200729522 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "c": "def-SV(P)", + "h": "def-SV(P)", + "br": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 52, + "number_scf_aux_basis_func": null + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:51.113000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:56.545000" + }, + "cpu_time": 3.21, + "wall_time": 5.58 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "egrad" + }, + "cosmo": null, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 3.3e-11, + "thize": 1e-05, + "thime": 5 + }, + "ex_state": 10 +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/ref_parser.json new file mode 100644 index 0000000..272992b --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/egrad/h3cbr_nosym/ref_parser.json @@ -0,0 +1,919 @@ +{ + "all_done": true, + "header": { + "executable": "egrad", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:51.113000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + 0.0 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.19107046 + ] + }, + "coordinates": { + "coords": [ + [ + 0.0, + 0.0, + -3.04112594 + ], + [ + 0.97212284, + 1.68376616, + -3.67601852 + ], + [ + 0.97212284, + -1.68376616, + -3.67601852 + ], + [ + -1.94424569, + 0.0, + -3.67601852 + ], + [ + 0.0, + 0.0, + 0.59622031 + ] + ], + "species": [ + "c", + "h", + "h", + "h", + "br" + ], + "charges": [ + 6.0, + 1.0, + 1.0, + 1.0, + 35.0 + ], + "isotopes": [ + 0, + 0, + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "c": "def-SV(P)", + "h": "def-SV(P)", + "br": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 52, + "number_scf_aux_basis_func": null + }, + "symmetry": { + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": null, + "pre_scf_run": null, + "scf_iterations": null, + "scf_energies": null, + "cosmo_results": null, + "electrostatic_moments": { + "unrestricted_electrons": null, + "charge": 0.0, + "dipole": { + "norm": 1.7382, + "moment": [ + -0.219654, + -0.0, + -1.724291 + ] + }, + "quadrupole": { + "trace": -53.473977000000005, + "anisotropy": 2.893489, + "moment": [ + [ + -17.791945, + -0.0, + 0.878623 + ], + [ + -0.0, + -19.261571, + 0.0 + ], + [ + 0.878623, + 0.0, + -16.42046 + ] + ] + } + }, + "timings": { + "cpu_time": 3.21, + "wall_time": 5.58, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:18:56.545000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 3.3e-11, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": { + "calc_type": "RPA SINGLET-EXCITATION", + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 22, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 19574, + "max_treated_vectors": 18, + "irrep_data": { + "a": { + "tensor_space_dim": 660, + "n_roots": 10 + } + } + }, + "escf_iterations": { + "steps": [ + [ + [ + "a", + 0, + 0.1104386619886686 + ] + ], + [ + [ + "a", + 0, + 0.01902291898698895 + ] + ], + [ + [ + "a", + 1, + 0.001947444159125122 + ] + ], + [ + [ + "a", + 3, + 0.0003571762018184652 + ] + ], + [ + [ + "a", + 7, + 4.812820204236434e-05 + ] + ], + [ + [ + "a", + 10, + 8.13719388711602e-06 + ] + ] + ], + "converged": true + }, + "escf_gs_total_en": -2614.005271607, + "escf_excitations": { + "a": [ + { + "tot_en": -2613.775721258578, + "osc_stre": 7.97369066988228e-06, + "rot_stre": -4.217176920994932e-16, + "dominant_contributions": [ + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 23, + "irrep": "a", + "energy": -0.66, + "spin": null + }, + "coeff": 99.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.007213, + -0.0, + -0.000285 + ], + "magnetic_dipole": [ + 0.0, + 0.001695, + -0.0 + ], + "electric_quadrupole": { + "trace": 0.0015840000000000001, + "anisotropy": 0.198269, + "moment": [ + [ + 0.091857, + 0.0, + -0.068729 + ], + [ + 0.0, + -0.091224, + 0.0 + ], + [ + -0.068729, + 0.0, + 0.000951 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.775700528467, + "osc_stre": 8.181619354680342e-06, + "rot_stre": -1.09291831041497e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 23, + "irrep": "a", + "energy": -0.66, + "spin": null + }, + "coeff": 99.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.0, + -0.007312, + 0.0 + ], + "magnetic_dipole": [ + 0.001693, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.198657, + "moment": [ + [ + -0.0, + 0.091425, + 0.0 + ], + [ + 0.091425, + 0.0, + 0.069255 + ], + [ + 0.0, + 0.069255, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.706981293913, + "osc_stre": 7.777246408912506e-06, + "rot_stre": 1.138403339045834e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 24, + "irrep": "a", + "energy": 1.6, + "spin": null + }, + "coeff": 99.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.006253, + -0.0, + -6.1e-05 + ], + "magnetic_dipole": [ + 0.0, + -0.002314, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.001014, + "anisotropy": 1.944884, + "moment": [ + [ + -0.292201, + 0.0, + -1.084304 + ], + [ + 0.0, + 0.291387, + -0.0 + ], + [ + -1.084304, + -0.0, + -0.0002 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.706962649916, + "osc_stre": 7.954267519213227e-06, + "rot_stre": -3.19872457468441e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 24, + "irrep": "a", + "energy": 1.6, + "spin": null + }, + "coeff": 99.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.006324, + -0.0 + ], + "magnetic_dipole": [ + 0.002316, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.945663, + "moment": [ + [ + 0.0, + 0.291982, + 0.0 + ], + [ + 0.291982, + -0.0, + -1.084719 + ], + [ + 0.0, + -1.084719, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.667110040014, + "osc_stre": 3.451235507532225e-07, + "rot_stre": 3.915471215385321e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 25, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 51.1 + }, + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 26, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 48.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.0, + -0.001237, + 0.0 + ], + "magnetic_dipole": [ + -2.6e-05, + 0.0, + 0.001177 + ], + "electric_quadrupole": { + "trace": -0.0, + "anisotropy": 0.021206, + "moment": [ + [ + 0.0, + -0.000342, + 0.0 + ], + [ + -0.000342, + -0.0, + 0.012238 + ], + [ + 0.0, + 0.012238, + -0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.665607743472, + "osc_stre": 0.002845517535934603, + "rot_stre": 2.242401648677876e-17, + "dominant_contributions": [ + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 26, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 50.3 + }, + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 25, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 49.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.112087, + 0.0, + 0.001634 + ], + "magnetic_dipole": [ + 0.0, + -0.002253, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.007731, + "anisotropy": 1.910822, + "moment": [ + [ + -0.057449, + 0.0, + -1.101749 + ], + [ + 0.0, + 0.056006, + -0.0 + ], + [ + -1.101749, + -0.0, + -0.006287 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.665600553972, + "osc_stre": 0.002815298074725997, + "rot_stre": -1.914477435208092e-16, + "dominant_contributions": [ + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 26, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 51.0 + }, + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 25, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 48.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.111501, + -0.0 + ], + "magnetic_dipole": [ + -0.002254, + -0.0, + -1.3e-05 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.906516, + "moment": [ + [ + -0.0, + -0.056153, + -0.0 + ], + [ + -0.056153, + 0.0, + 1.099294 + ], + [ + -0.0, + 1.099294, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.663555484773, + "osc_stre": 0.03127875409605586, + "rot_stre": -3.507404109756671e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 21, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 25, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 48.9 + }, + { + "occ_orb": { + "index": 22, + "irrep": "a", + "energy": -6.5, + "spin": null + }, + "virt_orb": { + "index": 26, + "irrep": "a", + "energy": 2.71, + "spin": null + }, + "coeff": 48.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.000312, + 0.0, + -0.370542 + ], + "magnetic_dipole": [ + 0.0, + -1e-05, + 0.0 + ], + "electric_quadrupole": { + "trace": 1.808064, + "anisotropy": 1.271956, + "moment": [ + [ + 0.178594, + -0.0, + -0.004183 + ], + [ + -0.0, + 0.178825, + -0.0 + ], + [ + -0.004183, + -0.0, + 1.450645 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.616757104312, + "osc_stre": 0.00901411177955678, + "rot_stre": -1.391349007115093e-15, + "dominant_contributions": [ + { + "occ_orb": { + "index": 19, + "irrep": "a", + "energy": -10.95, + "spin": null + }, + "virt_orb": { + "index": 23, + "irrep": "a", + "energy": -0.66, + "spin": null + }, + "coeff": 99.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.0, + -0.186554, + 0.0 + ], + "magnetic_dipole": [ + 0.001684, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.0, + "anisotropy": 1.761935, + "moment": [ + [ + 0.0, + -0.162467, + 0.0 + ], + [ + -0.162467, + -0.0, + 1.004196 + ], + [ + 0.0, + 1.004196, + -0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -2613.616732439692, + "osc_stre": 0.009071251670532842, + "rot_stre": -1.946472499338951e-16, + "dominant_contributions": [ + { + "occ_orb": { + "index": 18, + "irrep": "a", + "energy": -10.96, + "spin": null + }, + "virt_orb": { + "index": 23, + "irrep": "a", + "energy": -0.66, + "spin": null + }, + "coeff": 99.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.187017, + -0.0, + 0.006716 + ], + "magnetic_dipole": [ + 0.0, + 0.001681, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.024293999999999996, + "anisotropy": 1.765663, + "moment": [ + [ + -0.166266, + -0.0, + -1.006165 + ], + [ + -0.0, + 0.16075, + 0.0 + ], + [ + -1.006165, + 0.0, + -0.018779 + ] + ] + } + } + ] + } + ] + }, + "rdgrad_memory": null, + "gradient": { + "gradients": [ + [ + -0.09995971, + -5.400182e-10, + 0.06344875 + ], + [ + 0.015751, + -0.0422028, + 0.02783363 + ], + [ + 0.015751, + 0.0422028, + 0.02783363 + ], + [ + 0.07003746, + 3.083048e-10, + 0.06391954 + ], + [ + -0.00157236, + 1.328706e-10, + -0.1830458 + ] + ], + "dielectric": [ + [ + -0.105546, + -0.0, + -0.070184 + ], + [ + -0.0, + -0.142119, + 0.0 + ], + [ + -0.070184, + 0.0, + -0.741695 + ] + ] + }, + "egrad_excited_state": { + "index": 10, + "default": true + }, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/escf.log b/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/escf.log new file mode 100644 index 0000000..a5099dc --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/escf.log @@ -0,0 +1,1257 @@ + operating system is UNIX ! + + escf (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:19:15.731 + + + + + e s c f + + TURBOMOLE GmbH + + + integral direct evaluation of + + * excitation energies and transition moments + * dynamic response properties + * stabilities + + + + references (see also programs dscf and ridft) + + implementation and benchmarks (review) + F. Furche and D. Rappoport, + "Density functional methods for excited states: + equilibrium structure and electronic spectra", + ch. III of "Computational Photochemistry", ed. by + M. Olivucci, vol. 16 of "Theoretical and Computational + Chemistry", Elsevier, Amsterdam, 2005. + + Bethe-Salpeter equation + K. Krause and W. Klopper, + J. Comput. Chem. 38 (2017) 383. + + 2c BSE, GW and hybrid TD-DFT + C. Holzer and W. Klopper + J. Chem. Phys. 150, 204116 (2019) + + nonorthonormal Krylov space methods + F. Furche, B. T. Krull, B. D. Nguyen, and J. Kwon, + J. Chem. Phys. 144 (2016), 174105. + + two-component GW quasi particle energies + M. Kuehn and F. Weigend, + J. Chem. Theory Comput. 11 (2015), 969. + + two-component TDDFT with spin-orbit coupling + M. Kuehn and F. Weigend, + J. Chem. Theory Comput. 9 (2013), 5341. + M. Kuehn and F. Weigend, + J. Chem. Phys. 142 (2015), 034116. + + GW quasi particle energies + M. J. van Setten, F. Weigend, and F. Evers, + J. Chem. Theory Comput. 9 (2013), 232. + + Fast GW methods: RIGW, contour deformation + J. Chem. Phys. 150, 204116 (2019) + + current-density dependent meta-GGA Linear Response + J. E. Bates and F. Furche, + J. Chem. Phys. 137 (2012), 164105. + + spin-flip method + M. Kuehn and F. Weigend, + Chem. Phys. Chem. 12 (2011), 3331. + + RI-J method + R. Bauernschmitt, M. Haeser, O. Treutler, and R. Ahlrichs, + Chem. Phys. Lett. 264 (1997), 573. + + density functional implementation + R. Bauernschmitt and R. Ahlrichs, + Chem. Phys. Lett. 256 (1996), 454. + R. Bauernschmitt and R. Ahlrichs, + J. Chem. Phys. 104 (1996), 9047. + + UHF extension (RPA and CIS) + C. Ochsenfeld, J. Gauss, and R. Ahlrichs, + J. Chem. Phys. 103 (1995), 7401. + + integral direct algorithm + H. Weiss, R. Ahlrichs, and M. Haeser, + J. Chem. Phys. 99 (1993), 1262. + + Seminumerical and pseudospectral algorithms + C. Holzer, J. Chem. Phys. 153 (2020), 184115. + + Two-component static/dynamic polarizabilities, + and relativistic damped-response approach, + polarizabilities and damped response at GW-BSE level + M. Kehry, Y. J. Franzke, C. Holzer, and W. Klopper, + Mol. Phys. 118 (2020), e1755064 + + Nuclear spin-spin coupling constants + F. Mack, C. J. Schattenberg, M. Kaupp, F. Weigend, + J. Phys. Chem. A 2020, 124, 41, 8529 + + + + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 2.91365085 0.00000000 2.47857830 al 13.000 0 + -1.45682542 2.52329565 2.47857830 al 13.000 0 + -1.45682542 -2.52329565 2.47857830 al 13.000 0 + 2.91365085 0.00000000 -2.47857830 al 13.000 0 + -1.45682542 -2.52329565 -2.47857830 al 13.000 0 + -1.45682542 2.52329565 -2.47857830 al 13.000 0 + + center of nuclear mass : 0.00000000 0.00000000 0.00000000 + center of nuclear charge: 0.00000000 0.00000000 0.00000000 + + ************************************************************************* + Al6 triplett + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + al 6 36 18 def-SV(P) [4s3p1d|10s7p1d] + --------------------------------------------------------------------------- + total: 6 216 108 + --------------------------------------------------------------------------- + + total number of primitive shells : 18 + total number of contracted shells : 48 + total number of cartesian basis functions : 114 + total number of SCF-basis functions : 108 + + + residuum convergence criterium : 0.10E-04 + + + integral neglect threshold : 0.29E-10 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + FOUND RI-J FLAG ! + + + AUXILIARY BASIS SET information: + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + al 6 56 31 def-SV(P) [5s3p2d1f|12s4p5d1f] + --------------------------------------------------------------------------- + total: 6 336 186 + --------------------------------------------------------------------------- + + total number of primitive shells : 22 + total number of contracted shells : 66 + total number of cartesian basis functions : 216 + total number of SCF-basis functions : 186 + + RPA UHF-EXCITATION-CALCULATION (spin-conserved) + + FOUND DFT-FLAG ! + + + symmetry group of the molecule : d3h + + the group has the following generators : + c3(z) + c2(x) + mirror plane sigma(xy) + + 12 symmetry operations found + + there are 6 real representations : a1' a2' e' a1" a2" e" + + maximum number of shells which are related by symmetry : 6 + + IRREPs of excited states : a1' a2' e' a1" a2" e" + + mo occupation : + irrep mo's occupied + a1' 13 7 + a2' 5 1 + e' 18 7 + a1" 5 1 + a2" 13 5 + e" 18 6 + + number of basis functions : 108 + number of occupied orbitals : 40 + + ALPHA-Occupation: 40 + BETA-Occupation : 38 + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 1 + partition function : becke + partition sharpness : 3 + + grid rotated due to d3 symmetry + + ---------------------- + RI - INFORMATION + ---------------------- + + biggest AO integral is expected to be 7.882179841 + + Threshold for integral neglect (rithr2): 0.29E-10 + Threshold for integral neglect (rithr1): 0.29E-10 + + Contributions to RI integral batches: + neglected integral batches: 1044 + direct contribution: 0 + memory contribution: 132 + Core memory available (ricore) 40 MiB + Core memory needed for (P|Q) and Cholesky 1 MiB + Core memory used for integrals 2 MiB + + **************************************** + Memory allocated for RIDFT 2 MiB + **************************************** + + MOs are in ASCII format ! + + + reading orbital data $uhfmo_alpha from file control + orbital characterization : scfconv=7 + + reading orbital data $uhfmo_beta from file control + orbital characterization : scfconv=7 + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 2081 + + Calculating ground state density on molecular grid + + Integral of ground state total density: Na = 77.99685818104456 + + Integral of ground state spin density: Nb = 1.999782063536158 + + + all orbitals will be included in the transformation + + number of non-frozen orbitals : 108 + number of non-frozen occupied orbitals : 40 + all orbitals will be included in the transformation + + number of non-frozen orbitals : 108 + number of non-frozen occupied orbitals : 38 + + dimension of super-tensorspace: 1 + + IRREP tensor space dimension number of roots + + a1' 473 1 + a2' 417 1 + e' 895 1 + a1" 418 1 + a2" 482 1 + e" 900 1 + + maximum number of Davidson iterations set to 35 + + + machine precision: 2.22D-16 + + + logfile unrs_a1' will be constructed + + logfile unrs_a2' will be constructed + + logfile unrs_e' will be constructed + + logfile unrs_a1" will be constructed + + logfile unrs_a2" will be constructed + + logfile unrs_e" will be constructed + + + Nonorthonormal Krylov Space Iteration + + + total number of roots to be determined: 6 + + + maximum core memory set to 50 MB, + corresponding to 247 vectors in CAO basis + + + maximum number of simultaneously treated vectors (including degeneracy): 16 + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 1 a1' 0 6.653544993557436D-03 + a2' 0 6.187712856098195D-03 + e' 0 8.162478316899516D-03 + a1" 0 1.113725974532640D-02 + a2" 0 1.312868992323971D-02 + e" 0 7.807096186205476D-03 + + 2 a1' 0 3.598505003138214D-03 + a2' 0 1.514668655498120D-03 + e' 0 4.719102888037123D-03 + a1" 0 3.942541609303284D-03 + a2" 0 8.386763245585922D-03 + e" 0 3.670980028675391D-03 + + 3 a1' 0 1.095852930325537D-03 + a2' 0 3.604105534641941D-04 + e' 0 1.900591630134017D-03 + a1" 0 1.636884000106233D-04 + a2" 0 4.315154173424182D-03 + e" 0 1.441282621939299D-03 + + 4 a1' 0 2.596367867987149D-04 + a2' 0 1.004178261695742D-04 + e' 0 4.246357733925653D-04 + a1" 0 1.106763198540536D-05 + a2" 0 1.659229147375020D-03 + e" 0 3.333729188056164D-04 + + 5 a1' 0 1.168883602725443D-04 + a2' 0 1.570961563090160D-05 + e' 0 1.276907577221173D-04 + a1" 1 9.860324075377021D-07 + a2" 0 8.426678864281076D-04 + e" 0 2.176992622041266D-04 + + 6 a1' 0 3.442713308660887D-05 + a2' 1 2.156116324469686D-06 + e' 0 4.985703275537566D-05 + a1" 1 9.860324075377021D-07 + a2" 0 4.947334125118694D-04 + e" 0 5.040058712526180D-05 + + 7 a1' 1 8.046175457216619D-06 + a2' 1 2.156116324469686D-06 + e' 0 1.464266178839974D-05 + a1" 1 9.860324075377021D-07 + a2" 0 1.686054648388413D-04 + e" 1 8.658079521620624D-06 + + 8 a1' 1 8.046175457216619D-06 + a2' 1 2.156116324469686D-06 + e' 1 7.501826682208339D-06 + a1" 1 9.860324075377021D-07 + a2" 0 2.202702980868813D-05 + e" 1 8.658079521620624D-06 + + 9 a1' 1 8.046175457216619D-06 + a2' 1 2.156116324469686D-06 + e' 1 7.501826682208339D-06 + a1" 1 9.860324075377021D-07 + a2" 1 7.466683917848791D-06 + e" 1 8.658079521620624D-06 + + + converged! + + + Switching to fine grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 7043 + + Calculating ground state density on molecular grid + + Integral of ground state total density: Na = 77.99995750386027 + + Integral of ground state spin density: Nb = 1.999995303782432 + + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 10 a1' 0 1.057457691015560D-05 + a2' 1 9.250272059524912D-06 + e' 0 1.007664289628898D-05 + a1" 0 1.594689546564248D-05 + a2" 0 3.336978877544380D-05 + e" 0 1.534076944026955D-05 + + + NOTE: Residual norms are larger than 1.00D-05 due to mgrid option! + + Eigenpairs written on logfile unrs_a1' + + Eigenpairs written on logfile unrs_a2' + + Eigenpairs written on logfile unrs_e' + + Eigenpairs written on logfile unrs_a1" + + Eigenpairs written on logfile unrs_a2" + + Eigenpairs written on logfile unrs_e" + + + + IRREP Vector Eigenvalue Euclidean residual norm + + a1' 1 4.173452717754516D-03 1.057457691015560D-05 + + a2' 1 3.948336985411706D-03 9.250272059524912D-06 + + e' 1 6.507476981358921D-04 1.007664289628898D-05 + + a1" 1 3.044075723953279D-03 1.594689546564248D-05 + + a2" 1 2.013001419853261D-03 3.336978877544380D-05 + + e" 1 2.390278415057089D-03 1.534076944026955D-05 + + + + + + + Selection rules for point group d3h + + + Subduction with respect to d3h : + + Polar vector representation: e', a2" + + Axial vector representation: a2', e" + + Symmetric second rank tensor representation: a1', e', e" + + + + + Ground state + + + Total energy: -1454.190160138000 + + Charge: + + elec nuc total + + -78.000000 78.000000 0.000000 + + + Electric dipole moment: + + elec nuc total + + x 0.000000 0.000000 0.000000 Norm: 0.000000 + y 0.000000 0.000000 0.000000 + z 0.000000 0.000000 0.000000 Norm / debye: 0.000000 + + + Electric quadrupole moment: + + elec nuc total + + xx -390.390699 331.085089 -59.305610 + yy -390.390699 331.085089 -59.305610 1/3*trace: -59.000862 + zz -537.572699 479.181332 -58.391368 + xy 0.000000 0.000000 0.000000 + xz 0.000000 0.000000 0.000000 Anisotropy: 0.914242 + yz 0.000000 0.000000 0.000000 + + + + ============================================================================== + + I R R E P a1' + + ============================================================================== + + + Excitation is electric dipole forbidden + + Excitation is magnetic dipole forbidden + + Excitation is electric quadrupole allowed + + + + + 1 a1' excitation + + + Total energy: -1454.125557872422 + + Excitation energy: 0.6460226557756714E-01 + + Excitation energy / eV: 1.757917842110733 + + Excitation energy / nm: 705.2903215180999 + + Excitation energy / cm^(-1): 14178.55838001987 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 7 e' alpha -4.84 8 e' alpha -3.02 99.4 + + = 0.9957473430 + = 0.0042526570 + = -0.0030417093 + + 1/2 = 0.4969582907 + 1/2 = 0.5030417093 + + = 1.0000000000 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx -0.944104 + yy -0.944104 1/3*trace: -0.574100 + zz 0.165909 + xy 0.000000 + xz 0.000000 Anisotropy: 1.110013 + yz 0.000000 + + + + ============================================================================== + + I R R E P a2' + + ============================================================================== + + + Excitation is electric dipole forbidden + + Excitation is magnetic dipole allowed + + Excitation is electric quadrupole forbidden + + + + + 1 a2' excitation + + + Total energy: -1454.127324344177 + + Excitation energy: 0.6283579382335920E-01 + + Excitation energy / eV: 1.709849679383866 + + Excitation energy / nm: 725.1178012978620 + + Excitation energy / cm^(-1): 13790.86264412310 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 7 e' alpha -4.84 8 e' alpha -3.02 98.9 + + = 0.9933832464 + = 0.0066167536 + = -0.0051575051 + + 1/2 = 0.4948424949 + 1/2 = 0.5051575051 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.001132 + y 0.000000 + z -0.001132 Norm / Bohr mag.: 0.310274 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.000000 + yz 0.000000 + + + + ============================================================================== + + I R R E P e' + + ============================================================================== + + + Excitation is electric dipole allowed + + Excitation is magnetic dipole forbidden + + Excitation is electric quadrupole allowed + + + + + 1 e' excitation + + + Total energy: -1454.164650381080 + + Excitation energy: 0.2550975692036073E-01 + + Excitation energy / eV: 0.6941561017603349 + + Excitation energy / nm: 1786.114732580356 + + Excitation energy / cm^(-1): 5598.744479342940 + + + Oscillator strength: + + velocity representation: 0.6659932145145367E-02 + + length representation: 0.3293161473237949E-03 + + mixed representation: 0.1480953475122419E-02 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 7 a1' beta -4.98 7 e' beta -4.26 99.1 + + = 0.0057879690 + = 0.9942120310 + = 0.0006878394 + + 1/2 = 0.5006878394 + 1/2 = 0.4993121606 + + = 1.0000000000 + + + + 1st column + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.442499 Norm: 0.442499 + y 0.000000 + z 0.000000 Norm / debye: 1.124729 + + + Electric transition dipole moment (length rep.): + + x 0.098397 Norm: 0.098397 + y 0.000000 + z 0.000000 Norm / debye: 0.250103 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 3.935711 + yy -3.935711 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 6.816851 + yz 0.000000 + + + 2nd column + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.442499 + y -0.442499 + z 0.000000 Norm / debye: 1.124729 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.098397 + y 0.098397 + z 0.000000 Norm / debye: 0.250103 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy -3.935711 + xz 0.000000 Anisotropy: 6.816851 + yz 0.000000 + + + + ============================================================================== + + I R R E P a1" + + ============================================================================== + + + Excitation is electric dipole forbidden + + Excitation is magnetic dipole forbidden + + Excitation is electric quadrupole forbidden + + + + + 1 a1" excitation + + + Total energy: -1454.134986994860 + + Excitation energy: 0.5517314314005755E-01 + + Excitation energy / eV: 1.501338255928224 + + Excitation energy / nm: 825.8248500422932 + + Excitation energy / cm^(-1): 12109.10521522237 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 6 e" beta -5.88 7 e' beta -4.26 99.2 + + = 0.0068302325 + = 0.9931697675 + = -0.0037645069 + + 1/2 = 0.4962354931 + 1/2 = 0.5037645069 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.000000 + yz 0.000000 + + + + ============================================================================== + + I R R E P a2" + + ============================================================================== + + + Excitation is electric dipole allowed + + Excitation is magnetic dipole forbidden + + Excitation is electric quadrupole forbidden + + + + + 1 a2" excitation + + + Total energy: -1454.145293653629 + + Excitation energy: 0.4486648437144659E-01 + + Excitation energy / eV: 1.220879680986547 + + Excitation energy / nm: 1015.532045764586 + + Excitation energy / cm^(-1): 9847.055088230563 + + + Oscillator strength: + + velocity representation: 0.1470985333415308E-03 + + length representation: 0.6041295478674657E-05 + + mixed representation: 0.2981049654728790E-04 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 7 a1' beta -4.98 6 a2" beta -3.28 56.1 + 7 a1' alpha -5.20 6 a2" alpha -3.43 31.6 + 6 e" beta -5.88 7 e' beta -4.26 5.6 + + = 0.3572596439 + = 0.6427403561 + = -0.4386844860 + + 1/2 = 0.0613155140 + 1/2 = 0.9386844860 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.070128 + y 0.000000 + z -0.070128 Norm / debye: 0.178248 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.014212 + y 0.000000 + z -0.014212 Norm / debye: 0.036123 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.000000 + yz 0.000000 + + + + ============================================================================== + + I R R E P e" + + ============================================================================== + + + Excitation is electric dipole forbidden + + Excitation is magnetic dipole allowed + + Excitation is electric quadrupole allowed + + + + + 1 e" excitation + + + Total energy: -1454.141269664336 + + Excitation energy: 0.4889047366366059E-01 + + Excitation energy / eV: 1.330378047800820 + + Excitation energy / nm: 931.9474581786762 + + Excitation energy / cm^(-1): 10730.21865207998 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 7 e' alpha -4.84 6 a2" alpha -3.43 94.7 + + = 0.9537136549 + = 0.0462863451 + = -0.0139252463 + + 1/2 = 0.4860747537 + 1/2 = 0.5139252463 + + = 1.0000000000 + + + + 1st column + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.001293 + y -0.001293 + z 0.000000 Norm / Bohr mag.: 0.354246 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz -0.051761 Anisotropy: 0.089653 + yz 0.000000 + + + 2nd column + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.001293 Norm: 0.001293 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.354246 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.089653 + yz -0.051761 + + SUMMARY OF EXCITATION ENERGIES AND DIPOLE OSCILLATOR STRENGTHS (velocity/length): + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a1' | 0.064602 | 1.75792 | 14178.558 | 705.290 | 0.00000 | 0.00000 | + ----------------------------------------------------------------------------------------------- + Transitions are electric dipole forbidden in irrep a1' + Transitions are magnetic dipole forbidden in irrep a1' + + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a2' | 0.062836 | 1.70985 | 13790.863 | 725.118 | 0.00000 | 0.00000 | + ----------------------------------------------------------------------------------------------- + Transitions are electric dipole forbidden in irrep a2' + + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 e' | 0.025510 | 0.69416 | 5598.744 | 1786.115 | 0.00666 | 0.00033 | + ----------------------------------------------------------------------------------------------- + Transitions are magnetic dipole forbidden in irrep e' + + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a1" | 0.055173 | 1.50134 | 12109.105 | 825.825 | 0.00000 | 0.00000 | + ----------------------------------------------------------------------------------------------- + Transitions are electric dipole forbidden in irrep a1" + Transitions are magnetic dipole forbidden in irrep a1" + + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a2" | 0.044866 | 1.22088 | 9847.055 | 1015.532 | 0.00015 | 0.00001 | + ----------------------------------------------------------------------------------------------- + Transitions are magnetic dipole forbidden in irrep a2" + + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 e" | 0.048890 | 1.33038 | 10730.219 | 931.947 | 0.00000 | 0.00000 | + ----------------------------------------------------------------------------------------------- + Transitions are electric dipole forbidden in irrep e" + + + + + ------------------------------------------------------------------------ + total cpu-time : 2.30 seconds + total wall-time : 8.40 seconds + ------------------------------------------------------------------------ + + **** escf : all done **** + + + 2023-01-25 00:19:24.066 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_escf_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_escf_output.json new file mode 100644 index 0000000..e07561a --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_escf_output.json @@ -0,0 +1,838 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "EscfOnlyOutput", + "@version": "1.3.0", + "escf": { + "@module": "turbomoleio.output.data", + "@class": "EscfData", + "@version": "1.3.0", + "calc_type": "RPA UHF-EXCITATION", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "EscfIterationData", + "@version": "1.3.0", + "steps": [ + [ + [ + "a1'", + 0, + 0.006653544993557436 + ], + [ + "a2'", + 0, + 0.006187712856098195 + ], + [ + "e'", + 0, + 0.008162478316899516 + ], + [ + "a1\"", + 0, + 0.0111372597453264 + ], + [ + "a2\"", + 0, + 0.01312868992323971 + ], + [ + "e\"", + 0, + 0.007807096186205476 + ] + ], + [ + [ + "a1'", + 0, + 0.003598505003138214 + ], + [ + "a2'", + 0, + 0.00151466865549812 + ], + [ + "e'", + 0, + 0.004719102888037123 + ], + [ + "a1\"", + 0, + 0.003942541609303284 + ], + [ + "a2\"", + 0, + 0.008386763245585922 + ], + [ + "e\"", + 0, + 0.003670980028675391 + ] + ], + [ + [ + "a1'", + 0, + 0.001095852930325537 + ], + [ + "a2'", + 0, + 0.0003604105534641941 + ], + [ + "e'", + 0, + 0.001900591630134017 + ], + [ + "a1\"", + 0, + 0.0001636884000106233 + ], + [ + "a2\"", + 0, + 0.004315154173424182 + ], + [ + "e\"", + 0, + 0.001441282621939299 + ] + ], + [ + [ + "a1'", + 0, + 0.0002596367867987149 + ], + [ + "a2'", + 0, + 0.0001004178261695742 + ], + [ + "e'", + 0, + 0.0004246357733925653 + ], + [ + "a1\"", + 0, + 1.106763198540536e-05 + ], + [ + "a2\"", + 0, + 0.00165922914737502 + ], + [ + "e\"", + 0, + 0.0003333729188056164 + ] + ], + [ + [ + "a1'", + 0, + 0.0001168883602725443 + ], + [ + "a2'", + 0, + 1.57096156309016e-05 + ], + [ + "e'", + 0, + 0.0001276907577221173 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0008426678864281076 + ], + [ + "e\"", + 0, + 0.0002176992622041266 + ] + ], + [ + [ + "a1'", + 0, + 3.442713308660887e-05 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 0, + 4.985703275537566e-05 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0004947334125118694 + ], + [ + "e\"", + 0, + 5.04005871252618e-05 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 0, + 1.464266178839974e-05 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0001686054648388413 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 1, + 7.501826682208339e-06 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 2.202702980868813e-05 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 1, + 7.501826682208339e-06 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 1, + 7.466683917848791e-06 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ] + ], + "converged": true + }, + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 40, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 50.0, + "max_cao_basis_vectors": 247, + "max_treated_vectors": 16, + "irrep_data": { + "a1'": { + "tensor_space_dim": 473, + "n_roots": 1 + }, + "a2'": { + "tensor_space_dim": 417, + "n_roots": 1 + }, + "e'": { + "tensor_space_dim": 895, + "n_roots": 1 + }, + "a1\"": { + "tensor_space_dim": 418, + "n_roots": 1 + }, + "a2\"": { + "tensor_space_dim": 482, + "n_roots": 1 + }, + "e\"": { + "tensor_space_dim": 900, + "n_roots": 1 + } + }, + "gs_tot_en": -1454.190160138, + "excitations": { + "a1'": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.125557872422, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 8, + "irrep": "e'", + "energy": -3.02, + "spin": "alpha" + }, + "coeff": 99.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.7223000000000002, + "anisotropy": 1.110013, + "moment": [ + [ + -0.944104, + 0.0, + 0.0 + ], + [ + 0.0, + -0.944104, + 0.0 + ], + [ + 0.0, + 0.0, + 0.165909 + ] + ] + } + } + ] + } + ], + "a2'": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.127324344177, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 8, + "irrep": "e'", + "energy": -3.02, + "spin": "alpha" + }, + "coeff": 98.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.001132 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "e'": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.16465038108, + "osc_stre": 0.0003293161473237949, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -4.98, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 99.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.098397, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 6.816851, + "moment": [ + [ + 3.935711, + 0.0, + 0.0 + ], + [ + 0.0, + -3.935711, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + }, + { + "electric_dipole": [ + 0.0, + 0.098397, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 6.816851, + "moment": [ + [ + 0.0, + -3.935711, + 0.0 + ], + [ + -3.935711, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "a1\"": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.13498699486, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 6, + "irrep": "e\"", + "energy": -5.88, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "a2\"": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.145293653629, + "osc_stre": 6.041295478674657e-06, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -4.98, + "spin": "beta" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.28, + "spin": "beta" + }, + "coeff": 56.1 + }, + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -5.2, + "spin": "alpha" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.43, + "spin": "alpha" + }, + "coeff": 31.6 + }, + { + "occ_orb": { + "index": 6, + "irrep": "e\"", + "energy": -5.88, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 5.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.014212 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "e\"": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.141269664336, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.43, + "spin": "alpha" + }, + "coeff": 94.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.001293, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.089653, + "moment": [ + [ + 0.0, + 0.0, + -0.051761 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.051761, + 0.0, + 0.0 + ] + ] + } + }, + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.001293, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.089653, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.051761 + ], + [ + 0.0, + -0.051761, + 0.0 + ] + ] + } + } + ] + } + ] + } + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:15.731000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:24.066000" + }, + "cpu_time": 2.3, + "wall_time": 8.4 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "escf" + } +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_output.json new file mode 100644 index 0000000..952e158 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_output.json @@ -0,0 +1,1012 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "EscfOutput", + "@version": "1.3.0", + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": { + "@module": "turbomoleio.output.data", + "@class": "RiData", + "@version": "1.3.0", + "ricore": 40, + "marij": false, + "rij_memory": 2, + "rik": false + }, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "escf": { + "@module": "turbomoleio.output.data", + "@class": "EscfData", + "@version": "1.3.0", + "calc_type": "RPA UHF-EXCITATION", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "EscfIterationData", + "@version": "1.3.0", + "steps": [ + [ + [ + "a1'", + 0, + 0.006653544993557436 + ], + [ + "a2'", + 0, + 0.006187712856098195 + ], + [ + "e'", + 0, + 0.008162478316899516 + ], + [ + "a1\"", + 0, + 0.0111372597453264 + ], + [ + "a2\"", + 0, + 0.01312868992323971 + ], + [ + "e\"", + 0, + 0.007807096186205476 + ] + ], + [ + [ + "a1'", + 0, + 0.003598505003138214 + ], + [ + "a2'", + 0, + 0.00151466865549812 + ], + [ + "e'", + 0, + 0.004719102888037123 + ], + [ + "a1\"", + 0, + 0.003942541609303284 + ], + [ + "a2\"", + 0, + 0.008386763245585922 + ], + [ + "e\"", + 0, + 0.003670980028675391 + ] + ], + [ + [ + "a1'", + 0, + 0.001095852930325537 + ], + [ + "a2'", + 0, + 0.0003604105534641941 + ], + [ + "e'", + 0, + 0.001900591630134017 + ], + [ + "a1\"", + 0, + 0.0001636884000106233 + ], + [ + "a2\"", + 0, + 0.004315154173424182 + ], + [ + "e\"", + 0, + 0.001441282621939299 + ] + ], + [ + [ + "a1'", + 0, + 0.0002596367867987149 + ], + [ + "a2'", + 0, + 0.0001004178261695742 + ], + [ + "e'", + 0, + 0.0004246357733925653 + ], + [ + "a1\"", + 0, + 1.106763198540536e-05 + ], + [ + "a2\"", + 0, + 0.00165922914737502 + ], + [ + "e\"", + 0, + 0.0003333729188056164 + ] + ], + [ + [ + "a1'", + 0, + 0.0001168883602725443 + ], + [ + "a2'", + 0, + 1.57096156309016e-05 + ], + [ + "e'", + 0, + 0.0001276907577221173 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0008426678864281076 + ], + [ + "e\"", + 0, + 0.0002176992622041266 + ] + ], + [ + [ + "a1'", + 0, + 3.442713308660887e-05 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 0, + 4.985703275537566e-05 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0004947334125118694 + ], + [ + "e\"", + 0, + 5.04005871252618e-05 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 0, + 1.464266178839974e-05 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0001686054648388413 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 1, + 7.501826682208339e-06 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 2.202702980868813e-05 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 1, + 7.501826682208339e-06 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 1, + 7.466683917848791e-06 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ] + ], + "converged": true + }, + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 40, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 50.0, + "max_cao_basis_vectors": 247, + "max_treated_vectors": 16, + "irrep_data": { + "a1'": { + "tensor_space_dim": 473, + "n_roots": 1 + }, + "a2'": { + "tensor_space_dim": 417, + "n_roots": 1 + }, + "e'": { + "tensor_space_dim": 895, + "n_roots": 1 + }, + "a1\"": { + "tensor_space_dim": 418, + "n_roots": 1 + }, + "a2\"": { + "tensor_space_dim": 482, + "n_roots": 1 + }, + "e\"": { + "tensor_space_dim": 900, + "n_roots": 1 + } + }, + "gs_tot_en": -1454.190160138, + "excitations": { + "a1'": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.125557872422, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 8, + "irrep": "e'", + "energy": -3.02, + "spin": "alpha" + }, + "coeff": 99.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.7223000000000002, + "anisotropy": 1.110013, + "moment": [ + [ + -0.944104, + 0.0, + 0.0 + ], + [ + 0.0, + -0.944104, + 0.0 + ], + [ + 0.0, + 0.0, + 0.165909 + ] + ] + } + } + ] + } + ], + "a2'": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.127324344177, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 8, + "irrep": "e'", + "energy": -3.02, + "spin": "alpha" + }, + "coeff": 98.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.001132 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "e'": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.16465038108, + "osc_stre": 0.0003293161473237949, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -4.98, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 99.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.098397, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 6.816851, + "moment": [ + [ + 3.935711, + 0.0, + 0.0 + ], + [ + 0.0, + -3.935711, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + }, + { + "electric_dipole": [ + 0.0, + 0.098397, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 6.816851, + "moment": [ + [ + 0.0, + -3.935711, + 0.0 + ], + [ + -3.935711, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "a1\"": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.13498699486, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 6, + "irrep": "e\"", + "energy": -5.88, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "a2\"": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.145293653629, + "osc_stre": 6.041295478674657e-06, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -4.98, + "spin": "beta" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.28, + "spin": "beta" + }, + "coeff": 56.1 + }, + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -5.2, + "spin": "alpha" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.43, + "spin": "alpha" + }, + "coeff": 31.6 + }, + { + "occ_orb": { + "index": 6, + "irrep": "e\"", + "energy": -5.88, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 5.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.014212 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "e\"": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -1454.141269664336, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.43, + "spin": "alpha" + }, + "coeff": 94.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.001293, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.089653, + "moment": [ + [ + 0.0, + 0.0, + -0.051761 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.051761, + 0.0, + 0.0 + ] + ] + } + }, + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.001293, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.089653, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.051761 + ], + [ + 0.0, + -0.051761, + 0.0 + ] + ] + } + } + ] + } + ] + } + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + 0.0, + 0.0, + 0.0 + ], + "center_of_charge": [ + 0.0, + 0.0, + 0.0 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "Al", + "species": [ + { + "element": "Al", + "occu": 1 + } + ], + "xyz": [ + 1.541837630348155, + 0.0, + 1.3116071517986991 + ], + "properties": {} + }, + { + "name": "Al", + "species": [ + { + "element": "Al", + "occu": 1 + } + ], + "xyz": [ + -0.7709188125281915, + 1.3352705543506724, + 1.3116071517986991 + ], + "properties": {} + }, + { + "name": "Al", + "species": [ + { + "element": "Al", + "occu": 1 + } + ], + "xyz": [ + -0.7709188125281915, + -1.3352705543506724, + 1.3116071517986991 + ], + "properties": {} + }, + { + "name": "Al", + "species": [ + { + "element": "Al", + "occu": 1 + } + ], + "xyz": [ + 1.541837630348155, + 0.0, + -1.3116071517986991 + ], + "properties": {} + }, + { + "name": "Al", + "species": [ + { + "element": "Al", + "occu": 1 + } + ], + "xyz": [ + -0.7709188125281915, + -1.3352705543506724, + -1.3116071517986991 + ], + "properties": {} + }, + { + "name": "Al", + "species": [ + { + "element": "Al", + "occu": 1 + } + ], + "xyz": [ + -0.7709188125281915, + 1.3352705543506724, + -1.3116071517986991 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "al": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 108, + "number_scf_aux_basis_func": 186 + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:15.731000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:24.066000" + }, + "cpu_time": 2.3, + "wall_time": 8.4 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "escf" + }, + "cosmo": null, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 2.9e-11, + "thize": 1e-05, + "thime": 5 + }, + "symmetry": { + "@module": "turbomoleio.output.data", + "@class": "SymmetryData", + "@version": "1.3.0", + "symbol": "d3h", + "n_reps": 6, + "reps": [ + "a1'", + "a2'", + "e'", + "a1\"", + "a2\"", + "e\"" + ] + } +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_parser.json new file mode 100644 index 0000000..8c4b4bf --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/Al6_columns/ref_parser.json @@ -0,0 +1,939 @@ +{ + "all_done": true, + "header": { + "executable": "escf", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:15.731000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + 0.0 + ], + "center_of_charge": [ + 0.0, + 0.0, + 0.0 + ] + }, + "coordinates": { + "coords": [ + [ + 2.91365085, + 0.0, + 2.4785783 + ], + [ + -1.45682542, + 2.52329565, + 2.4785783 + ], + [ + -1.45682542, + -2.52329565, + 2.4785783 + ], + [ + 2.91365085, + 0.0, + -2.4785783 + ], + [ + -1.45682542, + -2.52329565, + -2.4785783 + ], + [ + -1.45682542, + 2.52329565, + -2.4785783 + ] + ], + "species": [ + "al", + "al", + "al", + "al", + "al", + "al" + ], + "charges": [ + 13.0, + 13.0, + 13.0, + 13.0, + 13.0, + 13.0 + ], + "isotopes": [ + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "al": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 108, + "number_scf_aux_basis_func": 186 + }, + "symmetry": { + "symbol": "d3h", + "n_reps": 6, + "reps": [ + "a1'", + "a2'", + "e'", + "a1\"", + "a2\"", + "e\"" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": { + "marij": false, + "rij_memory": 2, + "rik": false, + "ricore": 40 + }, + "dftd": null, + "pre_scf_run": null, + "scf_iterations": null, + "scf_energies": null, + "cosmo_results": null, + "electrostatic_moments": null, + "timings": { + "cpu_time": 2.3, + "wall_time": 8.4, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:24.066000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 2.9e-11, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": { + "calc_type": "RPA UHF-EXCITATION", + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 40, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 50.0, + "max_cao_basis_vectors": 247, + "max_treated_vectors": 16, + "irrep_data": { + "a1'": { + "tensor_space_dim": 473, + "n_roots": 1 + }, + "a2'": { + "tensor_space_dim": 417, + "n_roots": 1 + }, + "e'": { + "tensor_space_dim": 895, + "n_roots": 1 + }, + "a1\"": { + "tensor_space_dim": 418, + "n_roots": 1 + }, + "a2\"": { + "tensor_space_dim": 482, + "n_roots": 1 + }, + "e\"": { + "tensor_space_dim": 900, + "n_roots": 1 + } + } + }, + "escf_iterations": { + "steps": [ + [ + [ + "a1'", + 0, + 0.006653544993557436 + ], + [ + "a2'", + 0, + 0.006187712856098195 + ], + [ + "e'", + 0, + 0.008162478316899516 + ], + [ + "a1\"", + 0, + 0.0111372597453264 + ], + [ + "a2\"", + 0, + 0.01312868992323971 + ], + [ + "e\"", + 0, + 0.007807096186205476 + ] + ], + [ + [ + "a1'", + 0, + 0.003598505003138214 + ], + [ + "a2'", + 0, + 0.00151466865549812 + ], + [ + "e'", + 0, + 0.004719102888037123 + ], + [ + "a1\"", + 0, + 0.003942541609303284 + ], + [ + "a2\"", + 0, + 0.008386763245585922 + ], + [ + "e\"", + 0, + 0.003670980028675391 + ] + ], + [ + [ + "a1'", + 0, + 0.001095852930325537 + ], + [ + "a2'", + 0, + 0.0003604105534641941 + ], + [ + "e'", + 0, + 0.001900591630134017 + ], + [ + "a1\"", + 0, + 0.0001636884000106233 + ], + [ + "a2\"", + 0, + 0.004315154173424182 + ], + [ + "e\"", + 0, + 0.001441282621939299 + ] + ], + [ + [ + "a1'", + 0, + 0.0002596367867987149 + ], + [ + "a2'", + 0, + 0.0001004178261695742 + ], + [ + "e'", + 0, + 0.0004246357733925653 + ], + [ + "a1\"", + 0, + 1.106763198540536e-05 + ], + [ + "a2\"", + 0, + 0.00165922914737502 + ], + [ + "e\"", + 0, + 0.0003333729188056164 + ] + ], + [ + [ + "a1'", + 0, + 0.0001168883602725443 + ], + [ + "a2'", + 0, + 1.57096156309016e-05 + ], + [ + "e'", + 0, + 0.0001276907577221173 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0008426678864281076 + ], + [ + "e\"", + 0, + 0.0002176992622041266 + ] + ], + [ + [ + "a1'", + 0, + 3.442713308660887e-05 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 0, + 4.985703275537566e-05 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0004947334125118694 + ], + [ + "e\"", + 0, + 5.04005871252618e-05 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 0, + 1.464266178839974e-05 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 0.0001686054648388413 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 1, + 7.501826682208339e-06 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 0, + 2.202702980868813e-05 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ], + [ + [ + "a1'", + 1, + 8.046175457216619e-06 + ], + [ + "a2'", + 1, + 2.156116324469686e-06 + ], + [ + "e'", + 1, + 7.501826682208339e-06 + ], + [ + "a1\"", + 1, + 9.860324075377021e-07 + ], + [ + "a2\"", + 1, + 7.466683917848791e-06 + ], + [ + "e\"", + 1, + 8.658079521620624e-06 + ] + ] + ], + "converged": true + }, + "escf_gs_total_en": -1454.190160138, + "escf_excitations": { + "a1'": [ + { + "tot_en": -1454.125557872422, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 8, + "irrep": "e'", + "energy": -3.02, + "spin": "alpha" + }, + "coeff": 99.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.7223000000000002, + "anisotropy": 1.110013, + "moment": [ + [ + -0.944104, + 0.0, + 0.0 + ], + [ + 0.0, + -0.944104, + 0.0 + ], + [ + 0.0, + 0.0, + 0.165909 + ] + ] + } + } + ] + } + ], + "a2'": [ + { + "tot_en": -1454.127324344177, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 8, + "irrep": "e'", + "energy": -3.02, + "spin": "alpha" + }, + "coeff": 98.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.001132 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "e'": [ + { + "tot_en": -1454.16465038108, + "osc_stre": 0.0003293161473237949, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -4.98, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 99.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.098397, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 6.816851, + "moment": [ + [ + 3.935711, + 0.0, + 0.0 + ], + [ + 0.0, + -3.935711, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + }, + { + "electric_dipole": [ + 0.0, + 0.098397, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 6.816851, + "moment": [ + [ + 0.0, + -3.935711, + 0.0 + ], + [ + -3.935711, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "a1\"": [ + { + "tot_en": -1454.13498699486, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 6, + "irrep": "e\"", + "energy": -5.88, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "a2\"": [ + { + "tot_en": -1454.145293653629, + "osc_stre": 6.041295478674657e-06, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -4.98, + "spin": "beta" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.28, + "spin": "beta" + }, + "coeff": 56.1 + }, + { + "occ_orb": { + "index": 7, + "irrep": "a1'", + "energy": -5.2, + "spin": "alpha" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.43, + "spin": "alpha" + }, + "coeff": 31.6 + }, + { + "occ_orb": { + "index": 6, + "irrep": "e\"", + "energy": -5.88, + "spin": "beta" + }, + "virt_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.26, + "spin": "beta" + }, + "coeff": 5.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.014212 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.0, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "e\"": [ + { + "tot_en": -1454.141269664336, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 7, + "irrep": "e'", + "energy": -4.84, + "spin": "alpha" + }, + "virt_orb": { + "index": 6, + "irrep": "a2\"", + "energy": -3.43, + "spin": "alpha" + }, + "coeff": 94.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.001293, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.089653, + "moment": [ + [ + 0.0, + 0.0, + -0.051761 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.051761, + 0.0, + 0.0 + ] + ] + } + }, + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.001293, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.089653, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.051761 + ], + [ + 0.0, + -0.051761, + 0.0 + ] + ] + } + } + ] + } + ] + }, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/escf.log b/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/escf.log new file mode 100644 index 0000000..8ea426e --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/escf.log @@ -0,0 +1,3734 @@ + + escf (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:19:08.451 + + + + + e s c f + + TURBOMOLE GmbH + + + integral direct evaluation of + + * excitation energies and transition moments + * dynamic response properties + * stabilities + + + + references (see also programs dscf and ridft) + + implementation and benchmarks (review) + F. Furche and D. Rappoport, + "Density functional methods for excited states: + equilibrium structure and electronic spectra", + ch. III of "Computational Photochemistry", ed. by + M. Olivucci, vol. 16 of "Theoretical and Computational + Chemistry", Elsevier, Amsterdam, 2005. + + Bethe-Salpeter equation + K. Krause and W. Klopper, + J. Comput. Chem. 38 (2017) 383. + + 2c BSE, GW and hybrid TD-DFT + C. Holzer and W. Klopper + J. Chem. Phys. 150, 204116 (2019) + + nonorthonormal Krylov space methods + F. Furche, B. T. Krull, B. D. Nguyen, and J. Kwon, + J. Chem. Phys. 144 (2016), 174105. + + two-component GW quasi particle energies + M. Kuehn and F. Weigend, + J. Chem. Theory Comput. 11 (2015), 969. + + two-component TDDFT with spin-orbit coupling + M. Kuehn and F. Weigend, + J. Chem. Theory Comput. 9 (2013), 5341. + M. Kuehn and F. Weigend, + J. Chem. Phys. 142 (2015), 034116. + + GW quasi particle energies + M. J. van Setten, F. Weigend, and F. Evers, + J. Chem. Theory Comput. 9 (2013), 232. + + Fast GW methods: RIGW, contour deformation + J. Chem. Phys. 150, 204116 (2019) + + current-density dependent meta-GGA Linear Response + J. E. Bates and F. Furche, + J. Chem. Phys. 137 (2012), 164105. + + spin-flip method + M. Kuehn and F. Weigend, + Chem. Phys. Chem. 12 (2011), 3331. + + RI-J method + R. Bauernschmitt, M. Haeser, O. Treutler, and R. Ahlrichs, + Chem. Phys. Lett. 264 (1997), 573. + + density functional implementation + R. Bauernschmitt and R. Ahlrichs, + Chem. Phys. Lett. 256 (1996), 454. + R. Bauernschmitt and R. Ahlrichs, + J. Chem. Phys. 104 (1996), 9047. + + UHF extension (RPA and CIS) + C. Ochsenfeld, J. Gauss, and R. Ahlrichs, + J. Chem. Phys. 103 (1995), 7401. + + integral direct algorithm + H. Weiss, R. Ahlrichs, and M. Haeser, + J. Chem. Phys. 99 (1993), 1262. + + Seminumerical and pseudospectral algorithms + C. Holzer, J. Chem. Phys. 153 (2020), 184115. + + Two-component static/dynamic polarizabilities, + and relativistic damped-response approach, + polarizabilities and damped response at GW-BSE level + M. Kehry, Y. J. Franzke, C. Holzer, and W. Klopper, + Mol. Phys. 118 (2020), e1755064 + + Nuclear spin-spin coupling constants + F. Mack, C. J. Schattenberg, M. Kaupp, F. Weigend, + J. Phys. Chem. A 2020, 124, 41, 8529 + + + + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 -0.72557892 o 8.000 0 + 1.41713421 0.00000000 0.36278946 h 1.000 0 + -1.41713421 0.00000000 0.36278946 h 1.000 0 + + center of nuclear mass : 0.00000000 0.00000000 -0.60378908 + center of nuclear charge: 0.00000000 0.00000000 -0.50790525 + + ************************************************************************* + ridft_escf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 2 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 3 32 18 + --------------------------------------------------------------------------- + + total number of primitive shells : 16 + total number of contracted shells : 10 + total number of cartesian basis functions : 19 + total number of SCF-basis functions : 18 + + + residuum convergence criterium : 0.10E-04 + + + integral neglect threshold : 0.33E-10 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + FOUND RI-J FLAG ! + + + AUXILIARY BASIS SET information: + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 39 37 def-SV(P) [6s3p3d1f|8s3p3d1f] + h 2 10 5 def-SV(P) [2s1p|4s2p] + --------------------------------------------------------------------------- + total: 3 59 47 + --------------------------------------------------------------------------- + + total number of primitive shells : 21 + total number of contracted shells : 19 + total number of cartesian basis functions : 53 + total number of SCF-basis functions : 47 + + RPA TRIPLET-EXCITATION-CALCULATION + + FOUND DFT-FLAG ! + + THERE IS NO NEED FOR RI IN TRIPLET CALCULATIONS. + RI-FLAG IS SWITCHED OFF + + symmetry group of the molecule : c2v + + the group has the following generators : + c2(z) + mirror plane sigma(xz) + + 4 symmetry operations found + + there are 4 real representations : a1 a2 b1 b2 + + maximum number of shells which are related by symmetry : 2 + + IRREPs of excited states : a1 a2 b1 b2 + + mo occupation : + irrep mo's occupied + a1 9 3 + a2 1 0 + b1 5 1 + b2 3 1 + + number of basis functions : 18 + number of occupied orbitals : 5 + + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 2 + partition function : becke + partition sharpness : 3 + + + biggest AO integral is expected to be 4.776656448 + MOs are in ASCII format ! + + + reading orbital data $scfmo from file mos + orbital characterization : scfconv=7 + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 1098 + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 9.999336695654957 + + + all orbitals will be included in the transformation + + number of non-frozen orbitals : 18 + number of non-frozen occupied orbitals : 5 + + + + dimension of super-tensorspace: 1 + + IRREP tensor space dimension number of roots + + a1 24 10 + a2 9 9 + b1 19 10 + b2 13 10 + + maximum number of Davidson iterations set to 35 + + + machine precision: 2.22D-16 + + + logfile trip_a1 will be constructed + + logfile trip_a2 will be constructed + + logfile trip_b1 will be constructed + + logfile trip_b2 will be constructed + + + Nonorthonormal Krylov Space Iteration + + + total number of roots to be determined: 39 + + + maximum core memory set to 500 MB, + corresponding to 155298 vectors in CAO basis + + + maximum number of simultaneously treated vectors (including degeneracy): 58 + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 1 a1 0 1.246374408123256D-01 + a2 9 7.348166357137622D-15 + b1 0 9.181206046462143D-02 + b2 10 5.215985075398134D-14 + + 2 a1 10 7.745012815871526D-14 + a2 9 7.348166357137622D-15 + b1 10 4.175781234104372D-14 + b2 10 5.215985075398134D-14 + + + converged! + + + Switching to fine grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 3891 + + Calculating ground state density on molecular grid + + Integral of ground state density: N = 9.999998376409369 + + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 3 a1 0 6.403940522260189D-04 + a2 9 1.706585544322206D-13 + b1 0 5.891873443448800D-04 + b2 0 6.789901303557023D-04 + + + NOTE: Residual norms are larger than 1.00D-05 due to mgrid option! + + Eigenpairs written on logfile trip_a1 + + Eigenpairs written on logfile trip_a2 + + Eigenpairs written on logfile trip_b1 + + Eigenpairs written on logfile trip_b2 + + + + IRREP Vector Eigenvalue Euclidean residual norm + + a1 1 1.054766232029952D-01 1.298582917670337D-04 + 2 3.026046994133771D-01 1.099738037869553D-04 + 3 7.902543512639740D-01 4.552205590134016D-04 + 4 8.603798351365488D-01 2.827655638789335D-04 + 5 9.460562442523243D-01 1.199758740899852D-04 + 6 1.009429971377638D+00 6.403940522260189D-04 + 7 1.224509922904209D+00 3.748359443143058D-04 + 8 1.929758968467143D+00 5.798912085939602D-04 + 9 2.058098921634086D+00 5.012881530584084D-04 + 10 2.252781671673850D+00 4.300667852283489D-04 + + a2 1 1.120765400423354D-01 4.192021994801469D-15 + 2 5.842058186572742D-01 2.753518185042836D-15 + 3 1.474312621880384D+00 2.122997960535288D-15 + 4 1.744482247493362D+00 2.945476630319524D-15 + 5 7.604343181306200D+00 2.891828390794714D-15 + 6 8.869543285291950D+00 4.312910958139946D-15 + 7 1.029641062360514D+01 4.097264453572921D-15 + 8 1.113149001816987D+01 6.915470571309905D-15 + 9 4.512593472863269D+02 1.706585544322206D-13 + + b1 1 1.605557952129637D-01 8.148283965698304D-05 + 2 2.371925240336418D-01 9.531491512322061D-05 + 3 6.674184946834937D-01 7.109858668619430D-05 + 4 9.949683721775129D-01 1.947036479943374D-04 + 5 1.113098911396365D+00 8.868319995998766D-05 + 6 1.646768743710409D+00 5.636386120457392D-04 + 7 1.802348963498977D+00 1.206856050510259D-04 + 8 2.023160131345041D+00 1.332156682568466D-04 + 9 2.407356923953469D+00 5.891873443448800D-04 + 10 3.593079626443410D+00 5.377704909202448D-04 + + b2 1 6.456329812620863D-02 1.032952383281104D-04 + 2 7.109580265112532D-01 1.761158944801701D-04 + 3 1.128474645000850D+00 1.115067194593344D-04 + 4 1.327964921954495D+00 8.370100975008556D-05 + 5 1.677386384514268D+00 4.471284194887268D-04 + 6 3.022530110793249D+00 3.789684154731296D-04 + 7 7.060126011037987D+00 6.351851316669963D-04 + 8 7.611274156690730D+00 5.635921107676546D-04 + 9 8.452939957810736D+00 9.203724889538071D-05 + 10 9.029770179198403D+00 6.789901303557023D-04 + + + + + + + Selection rules for point group c2v + + + Subduction with respect to c2v : + + Polar vector representation: a1, b1, b2 + + Axial vector representation: a2, b1, b2 + + Symmetric second rank tensor representation: a1, a2, b1, b2 + + + + + Ground state + + + Total energy: -76.34300618267000 + + Charge: + + elec nuc total + + -10.000000 10.000000 0.000000 + + + Electric dipole moment: + + elec nuc total + + x 0.000000 0.000000 0.000000 Norm: 0.833024 + y 0.000000 0.000000 0.000000 + z 5.912076 -5.079052 0.833024 Norm / debye: 2.117351 + + + Electric quadrupole moment: + + elec nuc total + + xx -7.255308 4.016539 -3.238769 + yy -5.263827 0.000000 -5.263827 1/3*trace: -4.613667 + zz -9.813357 4.474951 -5.338406 + xy 0.000000 0.000000 0.000000 + xz 0.000000 0.000000 0.000000 Anisotropy: 2.063359 + yz 0.000000 0.000000 0.000000 + + + + ============================================================================== + + I R R E P a1 + + ============================================================================== + + + Excitation is electric dipole allowed + + Excitation is magnetic dipole forbidden + + Excitation is electric quadrupole allowed + + + + + 1 triplet a1 excitation + + + Total energy: -76.01823453488805 + + Excitation energy: 0.3247716477819380 + + Excitation energy / eV: 8.837489972578018 + + Excitation energy / nm: 140.2935045937036 + + Excitation energy / cm^(-1): 71279.13745877132 + + + Oscillator strength: + + velocity representation: 0.2354848144383120 + + length representation: 0.1313093878710515 + + mixed representation: 0.1758447236536340 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 4 a1 0.92 99.6 + + + S^2 expectation value: 2.00664831 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 1.042889 + y 0.000000 + z -1.042889 Norm / debye: 2.650779 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.778761 + y 0.000000 + z -0.778761 Norm / debye: 1.979429 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx -1.162068 + yy -0.265591 1/3*trace: -0.438110 + zz 0.113330 + xy 0.000000 + xz 0.000000 Anisotropy: 1.134437 + yz 0.000000 + + + + + 2 triplet a1 excitation + + + Total energy: -75.79291100961957 + + Excitation energy: 0.5500951730504251 + + Excitation energy / eV: 14.96885768507983 + + Excitation energy / nm: 82.82812664459315 + + Excitation energy / cm^(-1): 120731.9349550946 + + + Oscillator strength: + + velocity representation: 0.1462784859243031 + + length representation: 0.1744964493047580 + + mixed representation: 0.1597656921978774 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 2 b1 3.09 98.8 + + + S^2 expectation value: 2.01035042 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.631563 + y 0.000000 + z -0.631563 Norm / debye: 1.605286 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.689795 + y 0.000000 + z -0.689795 Norm / debye: 1.753297 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx -2.392923 + yy -0.540236 1/3*trace: -1.084303 + zz -0.319752 + xy 0.000000 + xz 0.000000 Anisotropy: 1.972194 + yz 0.000000 + + + + + 3 triplet a1 excitation + + + Total energy: -75.45404366868868 + + Excitation energy: 0.8889625139813119 + + Excitation energy / eV: 24.18991114822464 + + Excitation energy / nm: 51.25452642084957 + + Excitation energy / cm^(-1): 195104.7194621920 + + + Oscillator strength: + + velocity representation: 0.5989946058452202E-01 + + length representation: 0.9084914009269274E-01 + + mixed representation: 0.7376865517358960E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 5 a1 17.22 59.2 + 2 a1 -24.72 4 a1 0.92 25.5 + 1 b1 -13.01 3 b1 14.80 12.4 + + + S^2 expectation value: 2.01061141 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.317918 + y 0.000000 + z -0.317918 Norm / debye: 0.808074 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.391529 + y 0.000000 + z -0.391529 Norm / debye: 0.995176 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx -0.974100 + yy -0.189188 1/3*trace: -0.400979 + zz -0.039649 + xy 0.000000 + xz 0.000000 Anisotropy: 0.869381 + yz 0.000000 + + + + + 4 triplet a1 excitation + + + Total energy: -75.41543956234747 + + Excitation energy: 0.9275666203225237 + + Excitation energy / eV: 25.24038277966417 + + Excitation energy / nm: 49.12138024561211 + + Excitation energy / cm^(-1): 203577.3414449330 + + + Oscillator strength: + + velocity representation: 0.1571219125564624E-02 + + length representation: 0.4405119560493983E-02 + + mixed representation: 0.2630856914362120E-02 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 2 a1 -24.72 4 a1 0.92 70.8 + 3 a1 -8.44 5 a1 17.22 24.8 + + + S^2 expectation value: 2.00138506 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.050407 + y 0.000000 + z 0.050407 Norm / debye: 0.128123 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.084402 + y 0.000000 + z 0.084402 Norm / debye: 0.214530 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx -0.760907 + yy -0.665696 1/3*trace: -0.774584 + zz -0.897149 + xy 0.000000 + xz 0.000000 Anisotropy: 0.201491 + yz 0.000000 + + + + + 5 triplet a1 excitation + + + Total energy: -75.37035195620906 + + Excitation energy: 0.9726542264609372 + + Excitation energy / eV: 26.46727949265346 + + Excitation energy / nm: 46.84434758052210 + + Excitation energy / cm^(-1): 213472.9271513084 + + + Oscillator strength: + + velocity representation: 0.1846161838205189 + + length representation: 0.2839929522540723 + + mixed representation: 0.2289753154317505 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 3 b1 14.80 84.1 + 3 a1 -8.44 5 a1 17.22 15.1 + + + S^2 expectation value: 2.00319734 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.533582 + y 0.000000 + z 0.533582 Norm / debye: 1.356241 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.661790 + y 0.000000 + z 0.661790 Norm / debye: 1.682115 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx -0.451837 + yy -0.432177 1/3*trace: -0.522345 + zz -0.683021 + xy 0.000000 + xz 0.000000 Anisotropy: 0.241615 + yz 0.000000 + + + + + 6 triplet a1 excitation + + + Total energy: -75.33830226042343 + + Excitation energy: 1.004703922246568 + + Excitation energy / eV: 27.33939646180423 + + Excitation energy / nm: 45.35002964666255 + + Excitation energy / cm^(-1): 220507.0222979070 + + + Oscillator strength: + + velocity representation: 0.4724632824940223E-02 + + length representation: 0.7296036371497148E-02 + + mixed representation: 0.5871208813586277E-02 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 2 b2 23.42 92.3 + + + S^2 expectation value: 2.00929994 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.083987 + y 0.000000 + z -0.083987 Norm / debye: 0.213475 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.104369 + y 0.000000 + z -0.104369 Norm / debye: 0.265281 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 0.512091 + yy 1.833394 1/3*trace: 1.104253 + zz 0.967275 + xy 0.000000 + xz 0.000000 Anisotropy: 1.162583 + yz 0.000000 + + + + + 7 triplet a1 excitation + + + Total energy: -75.23643041802295 + + Excitation energy: 1.106575764647053 + + Excitation energy / eV: 30.11147152393163 + + Excitation energy / nm: 41.17508634804833 + + Excitation energy / cm^(-1): 242865.3072874820 + + + Oscillator strength: + + velocity representation: 0.7926866681929272E-01 + + length representation: 0.5343328082331574E-01 + + mixed representation: 0.6508137164077843E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 6 a1 23.83 94.5 + + + S^2 expectation value: 2.00520807 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.327798 + y 0.000000 + z -0.327798 Norm / debye: 0.833185 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.269129 + y 0.000000 + z -0.269129 Norm / debye: 0.684064 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 0.279761 + yy 0.234514 1/3*trace: 0.797572 + zz 1.878441 + xy 0.000000 + xz 0.000000 Anisotropy: 1.621777 + yz 0.000000 + + + + + 8 triplet a1 excitation + + + Total energy: -74.95384853558053 + + Excitation energy: 1.389157647089467 + + Excitation energy / eV: 37.80091907753653 + + Excitation energy / nm: 32.79926706336272 + + Excitation energy / cm^(-1): 304884.8615790416 + + + Oscillator strength: + + velocity representation: 0.2793429214641355E-01 + + length representation: 0.4811610985141787E-01 + + mixed representation: 0.3666182578020950E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 7 a1 30.18 99.0 + + + S^2 expectation value: 2.00103881 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.173676 + y 0.000000 + z -0.173676 Norm / debye: 0.441443 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.227937 + y 0.000000 + z -0.227937 Norm / debye: 0.579363 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 0.539242 + yy 0.125974 1/3*trace: 0.270930 + zz 0.147573 + xy 0.000000 + xz 0.000000 Anisotropy: 0.402903 + yz 0.000000 + + + + + 9 triplet a1 excitation + + + Total energy: -74.90839859812498 + + Excitation energy: 1.434607584545016 + + Excitation energy / eV: 39.03767533154121 + + Excitation energy / nm: 31.76015040687963 + + Excitation energy / cm^(-1): 314859.9698174365 + + + Oscillator strength: + + velocity representation: 0.3118784722374361E-01 + + length representation: 0.4405808732321431E-01 + + mixed representation: 0.3706854321937622E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 4 b1 27.75 95.8 + + + S^2 expectation value: 2.00332547 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.180581 + y 0.000000 + z 0.180581 Norm / debye: 0.458994 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.214631 + y 0.000000 + z 0.214631 Norm / debye: 0.545541 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx -0.780046 + yy -0.182657 1/3*trace: -0.406900 + zz -0.257997 + xy 0.000000 + xz 0.000000 Anisotropy: 0.563509 + yz 0.000000 + + + + + 10 triplet a1 excitation + + + Total energy: -74.84207924518309 + + Excitation energy: 1.500926937486915 + + Excitation energy / eV: 40.84231751818128 + + Excitation energy / nm: 30.35680919704808 + + Excitation energy / cm^(-1): 329415.3853126227 + + + Oscillator strength: + + velocity representation: 0.9496846248271561E-02 + + length representation: 0.9423586862392063E-02 + + mixed representation: 0.9460145640494614E-02 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 2 a1 -24.72 5 a1 17.22 95.7 + + + S^2 expectation value: 2.00208720 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.097422 + y 0.000000 + z 0.097422 Norm / debye: 0.247623 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.097045 + y 0.000000 + z 0.097045 Norm / debye: 0.246666 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000000 + + + Electric quadrupole transition moment: + + xx 0.713084 + yy -0.439145 1/3*trace: 0.100753 + zz 0.028320 + xy 0.000000 + xz 0.000000 Anisotropy: 1.003757 + yz 0.000000 + + + + ============================================================================== + + I R R E P a2 + + ============================================================================== + + + Excitation is electric dipole forbidden + + Excitation is magnetic dipole allowed + + Excitation is electric quadrupole allowed + + + + + 1 triplet a2 excitation + + + Total energy: -76.00822783802636 + + Excitation energy: 0.3347783446436394 + + Excitation energy / eV: 9.109786165234871 + + Excitation energy / nm: 136.1000596036183 + + Excitation energy / cm^(-1): 73475.35355702009 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 2 b1 3.09 99.9 + + + S^2 expectation value: 2.00277720 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.001046 + y 0.000000 + z 0.001046 Norm / Bohr mag.: 0.286713 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.282669 + xz 0.000000 Anisotropy: 0.489597 + yz 0.000000 + + + + + 2 triplet a2 excitation + + + Total energy: -75.57867260453982 + + Excitation energy: 0.7643335781301736 + + Excitation energy / eV: 20.79858380053380 + + Excitation energy / nm: 59.61186838273395 + + Excitation energy / cm^(-1): 167751.8297917295 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 3 b1 14.80 99.9 + + + S^2 expectation value: 2.00080015 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.001276 + y 0.000000 + z 0.001276 Norm / Bohr mag.: 0.349720 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy -0.467253 + xz 0.000000 Anisotropy: 0.809306 + yz 0.000000 + + + + + 3 triplet a2 excitation + + + Total energy: -75.12879342459158 + + Excitation energy: 1.214212758078412 + + Excitation energy / eV: 33.04042439474003 + + Excitation energy / nm: 37.52501557643623 + + Excitation energy / cm^(-1): 266488.8966704878 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 4 b1 27.75 92.9 + + + S^2 expectation value: 2.00217052 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000055 + y 0.000000 + z -0.000055 Norm / Bohr mag.: 0.015203 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy -0.599554 + xz 0.000000 Anisotropy: 1.038458 + yz 0.000000 + + + + + 4 triplet a2 excitation + + + Total energy: -75.02221768806029 + + Excitation energy: 1.320788494609701 + + Excitation energy / eV: 35.94049898360250 + + Excitation energy / nm: 34.49708476864357 + + Excitation energy / cm^(-1): 289879.5670872732 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 2 b2 23.42 92.9 + + + S^2 expectation value: 2.00056588 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000574 + y 0.000000 + z -0.000574 Norm / Bohr mag.: 0.157201 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy -0.431211 + xz 0.000000 Anisotropy: 0.746880 + yz 0.000000 + + + + + 5 triplet a2 excitation + + + Total energy: -73.58540882603756 + + Excitation energy: 2.757597356632437 + + Excitation energy / eV: 75.03807414867001 + + Excitation energy / nm: 16.52284462429342 + + Excitation energy / cm^(-1): 605222.6614662003 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 1 a2 67.90 97.7 + + + S^2 expectation value: 2.00076842 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000514 + y 0.000000 + z -0.000514 Norm / Bohr mag.: 0.140882 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.157209 + xz 0.000000 Anisotropy: 0.272294 + yz 0.000000 + + + + + 6 triplet a2 excitation + + + Total energy: -73.36482833618534 + + Excitation energy: 2.978177846484650 + + Excitation energy / eV: 81.04037724541126 + + Excitation energy / nm: 15.29907044127052 + + Excitation energy / cm^(-1): 653634.4830161399 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 3 b2 68.79 96.7 + + + S^2 expectation value: 2.00028703 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000644 + y 0.000000 + z -0.000644 Norm / Bohr mag.: 0.176609 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy -0.110574 + xz 0.000000 Anisotropy: 0.191521 + yz 0.000000 + + + + + 7 triplet a2 excitation + + + Total energy: -73.13420412838164 + + Excitation energy: 3.208802054288351 + + Excitation energy / eV: 87.31598393035017 + + Excitation energy / nm: 14.19948999319157 + + Excitation energy / cm^(-1): 704250.6458543373 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 5 b1 81.78 97.4 + + + S^2 expectation value: 2.00024438 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000115 + y 0.000000 + z -0.000115 Norm / Bohr mag.: 0.031523 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.238662 + xz 0.000000 Anisotropy: 0.413375 + yz 0.000000 + + + + + 8 triplet a2 excitation + + + Total energy: -73.00661741363095 + + Excitation energy: 3.336388769039044 + + Excitation energy / eV: 90.78779657146006 + + Excitation energy / nm: 13.65648784183004 + + Excitation energy / cm^(-1): 732252.6929564719 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 2 a1 -24.72 1 a2 67.90 99.0 + + + S^2 expectation value: 2.00070424 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000688 + y 0.000000 + z -0.000688 Norm / Bohr mag.: 0.188478 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy -0.458118 + xz 0.000000 Anisotropy: 0.793484 + yz 0.000000 + + + + + 9 triplet a2 excitation + + + Total energy: -55.10014038527046 + + Excitation energy: 21.24286579739953 + + Excitation energy / eV: 578.0480369991816 + + Excitation energy / nm: 2.144877866035273 + + Excitation energy / cm^(-1): 4662270.125893923 + + + Oscillator strength: + + velocity representation: 0.000000000000000 + + length representation: 0.000000000000000 + + mixed representation: 0.000000000000000 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 a1 -510.23 1 a2 67.90 100.0 + + + S^2 expectation value: 2.00000112 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / debye: 0.000000 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000003 + y 0.000000 + z 0.000003 Norm / Bohr mag.: 0.000698 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.015409 + xz 0.000000 Anisotropy: 0.026689 + yz 0.000000 + + + + ============================================================================== + + I R R E P b1 + + ============================================================================== + + + Excitation is electric dipole allowed + + Excitation is magnetic dipole allowed + + Excitation is electric quadrupole allowed + + + + + 1 triplet b1 excitation + + + Total energy: -75.94231204094471 + + Excitation energy: 0.4006941417252862 + + Excitation energy / eV: 10.90344703348489 + + Excitation energy / nm: 113.7110526842641 + + Excitation energy / cm^(-1): 87942.19877881065 + + + Oscillator strength: + + velocity representation: 0.2112777933009466 + + length representation: 0.2262610442217877 + + mixed representation: 0.2186411080587253 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 2 b1 3.09 97.4 + + + S^2 expectation value: 2.00688187 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.889336 Norm: 0.889336 + y 0.000000 + z 0.000000 Norm / debye: 2.260485 + + + Electric transition dipole moment (length rep.): + + x -0.920331 Norm: 0.920331 + y 0.000000 + z 0.000000 Norm / debye: 2.339266 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.001742 + y 0.001742 + z 0.000000 Norm / Bohr mag.: 0.477381 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz -0.372315 Anisotropy: 0.644868 + yz 0.000000 + + + + + 2 triplet b1 excitation + + + Total energy: -75.85598203128360 + + Excitation energy: 0.4870241513863987 + + Excitation energy / eV: 13.25260712773335 + + Excitation energy / nm: 93.55460613256245 + + Excitation energy / cm^(-1): 106889.4457675107 + + + Oscillator strength: + + velocity representation: 0.2875797779413072 + + length representation: 0.2777796399824467 + + mixed representation: 0.2826372360160074 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 4 a1 0.92 97.3 + + + S^2 expectation value: 2.00529004 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.941130 Norm: 0.941130 + y 0.000000 + z 0.000000 Norm / debye: 2.392132 + + + Electric transition dipole moment (length rep.): + + x 0.924955 Norm: 0.924955 + y 0.000000 + z 0.000000 Norm / debye: 2.351019 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000309 + y -0.000309 + z 0.000000 Norm / Bohr mag.: 0.084795 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.319097 Anisotropy: 0.552693 + yz 0.000000 + + + + + 3 triplet b1 excitation + + + Total energy: -75.52604933271800 + + Excitation energy: 0.8169568499519995 + + Excitation energy / eV: 22.23053649783910 + + Excitation energy / nm: 55.77204311669225 + + Excitation energy / cm^(-1): 179301.3029410504 + + + Oscillator strength: + + velocity representation: 0.2648189714069807 + + length representation: 0.3581528903420834 + + mixed representation: 0.3079702583478276 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 3 b1 14.80 98.5 + + + S^2 expectation value: 2.00441322 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.697302 Norm: 0.697302 + y 0.000000 + z 0.000000 Norm / debye: 1.772377 + + + Electric transition dipole moment (length rep.): + + x 0.810924 Norm: 0.810924 + y 0.000000 + z 0.000000 Norm / debye: 2.061179 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.002865 + y -0.002865 + z 0.000000 Norm / Bohr mag.: 0.785335 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz -0.556726 Anisotropy: 0.964278 + yz 0.000000 + + + + + 4 triplet b1 excitation + + + Total energy: -75.34552516922788 + + Excitation energy: 0.9974810134421170 + + Excitation energy / eV: 27.14285102882654 + + Excitation energy / nm: 45.67841597582850 + + Excitation energy / cm^(-1): 218921.7770554704 + + + Oscillator strength: + + velocity representation: 0.6036340635105417E-01 + + length representation: 0.8414035200812718E-01 + + mixed representation: 0.7126709099428233E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 2 a1 -24.72 2 b1 3.09 92.0 + + + S^2 expectation value: 2.00345617 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.301287 Norm: 0.301287 + y 0.000000 + z 0.000000 Norm / debye: 0.765801 + + + Electric transition dipole moment (length rep.): + + x -0.355710 Norm: 0.355710 + y 0.000000 + z 0.000000 Norm / debye: 0.904130 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000818 + y 0.000818 + z 0.000000 Norm / Bohr mag.: 0.224113 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz -0.598330 Anisotropy: 1.036339 + yz 0.000000 + + + + + 5 triplet b1 excitation + + + Total energy: -75.28797115415371 + + Excitation energy: 1.055035028516288 + + Excitation energy / eV: 28.70897613418397 + + Excitation energy / nm: 43.18657810260236 + + Excitation energy / cm^(-1): 231553.4232591764 + + + Oscillator strength: + + velocity representation: 0.1284942502686530 + + length representation: 0.2214315864696532 + + mixed representation: 0.1686792390580907 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 5 a1 17.22 90.4 + + + S^2 expectation value: 2.00426079 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.427419 Norm: 0.427419 + y 0.000000 + z 0.000000 Norm / debye: 1.086399 + + + Electric transition dipole moment (length rep.): + + x -0.561089 Norm: 0.561089 + y 0.000000 + z 0.000000 Norm / debye: 1.426157 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000368 + y -0.000368 + z 0.000000 Norm / Bohr mag.: 0.100836 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz -0.215802 Anisotropy: 0.373781 + yz 0.000000 + + + + + 6 triplet b1 excitation + + + Total energy: -75.05974130599394 + + Excitation energy: 1.283264876676054 + + Excitation energy / eV: 34.91942895027831 + + Excitation energy / nm: 35.50580514446820 + + Excitation energy / cm^(-1): 281644.0848987581 + + + Oscillator strength: + + velocity representation: 0.1978792631886659 + + length representation: 0.1701379379535982 + + mixed representation: 0.1834850669746642 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 4 b1 27.75 78.9 + 1 b1 -13.01 6 a1 23.83 21.0 + + + S^2 expectation value: 2.00200847 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.480936 Norm: 0.480936 + y 0.000000 + z 0.000000 Norm / debye: 1.222428 + + + Electric transition dipole moment (length rep.): + + x 0.445952 Norm: 0.445952 + y 0.000000 + z 0.000000 Norm / debye: 1.133505 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.001610 + y -0.001610 + z 0.000000 Norm / Bohr mag.: 0.441305 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz -0.672210 Anisotropy: 1.164301 + yz 0.000000 + + + + + 7 triplet b1 excitation + + + Total energy: -75.00049027457096 + + Excitation energy: 1.342515908099035 + + Excitation energy / eV: 36.53173223981016 + + Excitation energy / nm: 33.93878045327331 + + Excitation energy / cm^(-1): 294648.1831389109 + + + Oscillator strength: + + velocity representation: 0.1015236080691838E-02 + + length representation: 0.5612486793166832E-02 + + mixed representation: 0.2387048197005959E-02 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 6 a1 23.83 78.8 + 3 a1 -8.44 4 b1 27.75 20.9 + + + S^2 expectation value: 2.00022480 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.033680 Norm: 0.033680 + y 0.000000 + z 0.000000 Norm / debye: 0.085606 + + + Electric transition dipole moment (length rep.): + + x -0.079189 Norm: 0.079189 + y 0.000000 + z 0.000000 Norm / debye: 0.201279 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000729 + y -0.000729 + z 0.000000 Norm / Bohr mag.: 0.199718 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.222030 Anisotropy: 0.384568 + yz 0.000000 + + + + + 8 triplet b1 excitation + + + Total energy: -74.92062784645103 + + Excitation energy: 1.422378336218968 + + Excitation energy / eV: 38.70490041047981 + + Excitation energy / nm: 32.03321612807926 + + Excitation energy / cm^(-1): 312175.9600573385 + + + Oscillator strength: + + velocity representation: 0.5774687727203557E-03 + + length representation: 0.1383020408469612E-02 + + mixed representation: 0.8936728136886297E-03 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 2 a1 -24.72 3 b1 14.80 98.8 + + + S^2 expectation value: 2.00125064 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.024678 Norm: 0.024678 + y 0.000000 + z 0.000000 Norm / debye: 0.062725 + + + Electric transition dipole moment (length rep.): + + x -0.038190 Norm: 0.038190 + y 0.000000 + z 0.000000 Norm / debye: 0.097071 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000984 + y 0.000984 + z 0.000000 Norm / Bohr mag.: 0.269581 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz -0.680881 Anisotropy: 1.179320 + yz 0.000000 + + + + + 9 triplet b1 excitation + + + Total energy: -74.79144022404836 + + Excitation energy: 1.551565958621634 + + Excitation energy / eV: 42.22027598393910 + + Excitation energy / nm: 29.36604300114780 + + Excitation energy / cm^(-1): 340529.3657751746 + + + Oscillator strength: + + velocity representation: 0.8459011752145730E-02 + + length representation: 0.3114612763589440E-01 + + mixed representation: 0.1623161913383448E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 7 a1 30.18 99.2 + + + S^2 expectation value: 2.00101712 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.090432 Norm: 0.090432 + y 0.000000 + z 0.000000 Norm / debye: 0.229856 + + + Electric transition dipole moment (length rep.): + + x -0.173525 Norm: 0.173525 + y 0.000000 + z 0.000000 Norm / debye: 0.441060 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000428 + y -0.000428 + z 0.000000 Norm / Bohr mag.: 0.117377 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz -0.298321 Anisotropy: 0.516707 + yz 0.000000 + + + + + 10 triplet b1 excitation + + + Total energy: -74.44746414239671 + + Excitation energy: 1.895542040273285 + + Excitation energy / eV: 51.58034541476646 + + Excitation energy / nm: 24.03711006769916 + + Excitation energy / cm^(-1): 416023.3892653038 + + + Oscillator strength: + + velocity representation: 0.9226550791944600E-01 + + length representation: 0.9313921044836769E-01 + + mixed representation: 0.9270132986767134E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 2 a1 -24.72 4 b1 27.75 99.2 + + + S^2 expectation value: 2.00096822 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.270208 Norm: 0.270208 + y 0.000000 + z 0.000000 Norm / debye: 0.686806 + + + Electric transition dipole moment (length rep.): + + x -0.271485 Norm: 0.271485 + y 0.000000 + z 0.000000 Norm / debye: 0.690050 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000977 + y 0.000977 + z 0.000000 Norm / Bohr mag.: 0.267685 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.378952 Anisotropy: 0.656364 + yz 0.000000 + + + + ============================================================================== + + I R R E P b2 + + ============================================================================== + + + Excitation is electric dipole allowed + + Excitation is magnetic dipole allowed + + Excitation is electric quadrupole allowed + + + + + 1 triplet b2 excitation + + + Total energy: -76.08891309318071 + + Excitation energy: 0.2540930894892827 + + Excitation energy / eV: 6.914227722152135 + + Excitation energy / nm: 179.3175593699954 + + Excitation energy / cm^(-1): 55766.98697908238 + + + Oscillator strength: + + velocity representation: 0.9695632035150084E-01 + + length representation: 0.1444211774765394E-01 + + mixed representation: 0.3741997588047901E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 4 a1 0.92 100.0 + + + S^2 expectation value: 2.00456917 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.756549 + y 0.756549 + z 0.000000 Norm / debye: 1.922971 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.291988 + y 0.291988 + z 0.000000 Norm / debye: 0.742164 + + + Magnetic transition dipole moment / i: + + x -0.000282 Norm: 0.000282 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.077394 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.170900 + yz -0.098669 + + + + + 2 triplet b2 excitation + + + Total energy: -75.49982291284590 + + Excitation energy: 0.8431832698240953 + + Excitation energy / eV: 22.94419399909946 + + Excitation energy / nm: 54.03730634919430 + + Excitation energy / cm^(-1): 185057.3367570618 + + + Oscillator strength: + + velocity representation: 0.1054128736572616 + + length representation: 0.1866850354372666 + + mixed representation: 0.1402818807054211 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 5 a1 17.22 99.8 + + + S^2 expectation value: 2.00170449 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.433043 + y 0.433043 + z 0.000000 Norm / debye: 1.100695 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.576288 + y 0.576288 + z 0.000000 Norm / debye: 1.464788 + + + Magnetic transition dipole moment / i: + + x 0.001725 Norm: 0.001725 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.472753 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.451549 + yz -0.260702 + + + + + 3 triplet b2 excitation + + + Total energy: -75.28070931032175 + + Excitation energy: 1.062296872348239 + + Excitation energy / eV: 28.90658104361985 + + Excitation energy / nm: 42.89135536969138 + + Excitation energy / cm^(-1): 233147.2137523948 + + + Oscillator strength: + + velocity representation: 0.1341054218274605E-01 + + length representation: 0.1184729127031465E-01 + + mixed representation: 0.1260470544407261E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 6 a1 23.83 84.2 + 3 a1 -8.44 2 b2 23.42 15.7 + + + S^2 expectation value: 2.00347830 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.137609 + y -0.137609 + z 0.000000 Norm / debye: 0.349769 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.129340 + y -0.129340 + z 0.000000 Norm / debye: 0.328751 + + + Magnetic transition dipole moment / i: + + x -0.000399 Norm: 0.000399 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.109318 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 1.470922 + yz 0.849237 + + + + + 4 triplet b2 excitation + + + Total energy: -75.19063257920865 + + Excitation energy: 1.152373603461349 + + Excitation energy / eV: 31.35769465963726 + + Excitation energy / nm: 39.53869866781290 + + Excitation energy / cm^(-1): 252916.7710481079 + + + Oscillator strength: + + velocity representation: 0.1345247583028893E-01 + + length representation: 0.1706350575088063E-04 + + mixed representation: 0.4791100068812150E-03 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 2 b2 23.42 84.2 + 1 b2 -6.40 6 a1 23.83 15.7 + + + S^2 expectation value: 2.00049476 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.132327 + y 0.132327 + z 0.000000 Norm / debye: 0.336345 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.004713 + y -0.004713 + z 0.000000 Norm / debye: 0.011979 + + + Magnetic transition dipole moment / i: + + x 0.000723 Norm: 0.000723 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.198106 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.508370 + yz -0.293507 + + + + + 5 triplet b2 excitation + + + Total energy: -75.04786665948561 + + Excitation energy: 1.295139523184382 + + Excitation energy / eV: 35.24255466079512 + + Excitation energy / nm: 35.18026578941286 + + Excitation energy / cm^(-1): 284250.2685558664 + + + Oscillator strength: + + velocity representation: 0.3186600307892787 + + length representation: 0.5275290117476400 + + mixed representation: 0.4100029403867011 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 7 a1 30.18 99.5 + + + S^2 expectation value: 2.00216015 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.607507 + y -0.607507 + z 0.000000 Norm / debye: 1.544140 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.781647 + y -0.781647 + z 0.000000 Norm / debye: 1.986763 + + + Magnetic transition dipole moment / i: + + x -0.002174 Norm: 0.002174 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.595913 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.520233 + yz 0.300356 + + + + + 6 triplet b2 excitation + + + Total energy: -74.60446365779657 + + Excitation energy: 1.738542524873421 + + Excitation energy / eV: 47.30816940272273 + + Excitation energy / nm: 26.20778727475611 + + Excitation energy / cm^(-1): 381565.9786028396 + + + Oscillator strength: + + velocity representation: 0.1046310835710460 + + length representation: 0.7023608050783973E-01 + + mixed representation: 0.8572559249908102E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 2 a1 -24.72 2 b2 23.42 99.4 + + + S^2 expectation value: 2.00114320 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.300458 + y 0.300458 + z 0.000000 Norm / debye: 0.763693 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.246169 + y 0.246169 + z 0.000000 Norm / debye: 0.625704 + + + Magnetic transition dipole moment / i: + + x 0.001221 Norm: 0.001221 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.334727 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.063929 + yz -0.036909 + + + + + 7 triplet b2 excitation + + + Total energy: -73.68591641921864 + + Excitation energy: 2.657089763451357 + + Excitation energy / eV: 72.30312221252646 + + Excitation energy / nm: 17.14784095243236 + + Excitation energy / cm^(-1): 583163.7945702369 + + + Oscillator strength: + + velocity representation: 0.2859321587655434E-01 + + length representation: 0.6977753602944474E-01 + + mixed representation: 0.4466726039308838E-01 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 8 a1 67.45 91.8 + + + S^2 expectation value: 2.00091171 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.127050 + y 0.127050 + z 0.000000 Norm / debye: 0.322931 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.198472 + y 0.198472 + z 0.000000 Norm / debye: 0.504471 + + + Magnetic transition dipole moment / i: + + x 0.000860 Norm: 0.000860 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.235747 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.129434 + yz -0.074729 + + + + + 8 triplet b2 excitation + + + Total energy: -73.58415240678939 + + Excitation energy: 2.758853775880616 + + Excitation energy / eV: 75.07226307058782 + + Excitation energy / nm: 16.51531989782835 + + Excitation energy / cm^(-1): 605498.4136166987 + + + Oscillator strength: + + velocity representation: 0.4463135276964550 + + length representation: 1.098716013399029 + + mixed representation: 0.7002655352626644 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 3 a1 -8.44 3 b2 68.79 91.4 + + + S^2 expectation value: 2.00107413 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.492608 + y 0.492608 + z 0.000000 Norm / debye: 1.252094 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.772901 + y 0.772901 + z 0.000000 Norm / debye: 1.964534 + + + Magnetic transition dipole moment / i: + + x 0.003078 Norm: 0.003078 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.843583 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 1.272895 + yz -0.734906 + + + + + 9 triplet b2 excitation + + + Total energy: -73.43561216778127 + + Excitation energy: 2.907394014888717 + + Excitation energy / eV: 79.11425036142377 + + Excitation energy / nm: 15.67154380406330 + + Excitation energy / cm^(-1): 638099.2277170916 + + + Oscillator strength: + + velocity representation: 0.1200979302622326 + + length representation: 0.3280400058904574 + + mixed representation: 0.1984865883395009 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b1 -13.01 1 a2 67.90 95.3 + + + S^2 expectation value: 2.00068207 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.248921 + y 0.248921 + z 0.000000 Norm / debye: 0.632699 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.411393 + y 0.411393 + z 0.000000 Norm / debye: 1.045665 + + + Magnetic transition dipole moment / i: + + x 0.001170 Norm: 0.001170 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.320652 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.340846 + yz -0.196787 + + + + + 10 triplet b2 excitation + + + Total energy: -73.33804858243694 + + Excitation energy: 3.004957600233055 + + Excitation energy / eV: 81.76909173399416 + + Excitation energy / nm: 15.16272730652381 + + Excitation energy / cm^(-1): 659511.9595803081 + + + Oscillator strength: + + velocity representation: 0.2563394030976651 + + length representation: 0.4465036699568586 + + mixed representation: 0.3383141797762221 + + + Rotatory strength: + + velocity representation: 0.000000000000000 + + velocity rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + length representation: 0.000000000000000 + + length rep. / 10^(-40)erg*cm^3: 0.000000000000000 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 1 b2 -6.40 9 a1 77.83 97.4 + + + S^2 expectation value: 2.00125766 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000000 Norm: 0.357713 + y 0.357713 + z 0.000000 Norm / debye: 0.909221 + + + Electric transition dipole moment (length rep.): + + x 0.000000 Norm: 0.472105 + y 0.472105 + z 0.000000 Norm / debye: 1.199981 + + + Magnetic transition dipole moment / i: + + x 0.002567 Norm: 0.002567 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.703551 + + + Electric quadrupole transition moment: + + xx 0.000000 + yy 0.000000 1/3*trace: 0.000000 + zz 0.000000 + xy 0.000000 + xz 0.000000 Anisotropy: 0.789818 + yz -0.456002 + + SUMMARY OF EXCITATION ENERGIES AND DIPOLE OSCILLATOR STRENGTHS (velocity/length): + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a1 | 0.324772 | 8.83749 | 71279.137 | 140.294 | 0.23548 | 0.13131 | + | 2 a1 | 0.550095 | 14.96885 | 120731.935 | 82.828 | 0.14628 | 0.17450 | + | 3 a1 | 0.888963 | 24.18990 | 195104.719 | 51.255 | 0.05990 | 0.09085 | + | 4 a1 | 0.927567 | 25.24037 | 203577.341 | 49.121 | 0.00157 | 0.00441 | + | 5 a1 | 0.972654 | 26.46727 | 213472.927 | 46.844 | 0.18462 | 0.28399 | + | 6 a1 | 1.004704 | 27.33939 | 220507.022 | 45.350 | 0.00472 | 0.00730 | + | 7 a1 | 1.106576 | 30.11146 | 242865.307 | 41.175 | 0.07927 | 0.05343 | + | 8 a1 | 1.389158 | 37.80090 | 304884.862 | 32.799 | 0.02793 | 0.04812 | + | 9 a1 | 1.434608 | 39.03766 | 314859.970 | 31.760 | 0.03119 | 0.04406 | + | 10 a1 | 1.500927 | 40.84230 | 329415.385 | 30.357 | 0.00950 | 0.00942 | + ----------------------------------------------------------------------------------------------- + Transitions are magnetic dipole forbidden in irrep a1 + + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a2 | 0.334778 | 9.10978 | 73475.354 | 136.100 | 0.00000 | 0.00000 | + | 2 a2 | 0.764334 | 20.79858 | 167751.830 | 59.612 | 0.00000 | 0.00000 | + | 3 a2 | 1.214213 | 33.04041 | 266488.897 | 37.525 | 0.00000 | 0.00000 | + | 4 a2 | 1.320788 | 35.94049 | 289879.567 | 34.497 | 0.00000 | 0.00000 | + | 5 a2 | 2.757597 | 75.03805 | 605222.661 | 16.523 | 0.00000 | 0.00000 | + | 6 a2 | 2.978178 | 81.04035 | 653634.483 | 15.299 | 0.00000 | 0.00000 | + | 7 a2 | 3.208802 | 87.31595 | 704250.646 | 14.199 | 0.00000 | 0.00000 | + | 8 a2 | 3.336389 | 90.78776 | 732252.693 | 13.656 | 0.00000 | 0.00000 | + | 9 a2 | 21.242866 | 578.04782 | 4662270.125 | 2.145 | 0.00000 | 0.00000 | + ----------------------------------------------------------------------------------------------- + Transitions are electric dipole forbidden in irrep a2 + + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 b1 | 0.400694 | 10.90344 | 87942.199 | 113.711 | 0.21128 | 0.22626 | + | 2 b1 | 0.487024 | 13.25260 | 106889.446 | 93.555 | 0.28758 | 0.27778 | + | 3 b1 | 0.816957 | 22.23053 | 179301.303 | 55.772 | 0.26482 | 0.35815 | + | 4 b1 | 0.997481 | 27.14284 | 218921.777 | 45.678 | 0.06036 | 0.08414 | + | 5 b1 | 1.055035 | 28.70897 | 231553.423 | 43.187 | 0.12849 | 0.22143 | + | 6 b1 | 1.283265 | 34.91942 | 281644.085 | 35.506 | 0.19788 | 0.17014 | + | 7 b1 | 1.342516 | 36.53172 | 294648.183 | 33.939 | 0.00102 | 0.00561 | + | 8 b1 | 1.422378 | 38.70489 | 312175.960 | 32.033 | 0.00058 | 0.00138 | + | 9 b1 | 1.551566 | 42.22026 | 340529.366 | 29.366 | 0.00846 | 0.03115 | + | 10 b1 | 1.895542 | 51.58033 | 416023.389 | 24.037 | 0.09227 | 0.09314 | + ----------------------------------------------------------------------------------------------- + + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 b2 | 0.254093 | 6.91423 | 55766.987 | 179.318 | 0.09696 | 0.01444 | + | 2 b2 | 0.843183 | 22.94419 | 185057.337 | 54.037 | 0.10541 | 0.18669 | + | 3 b2 | 1.062297 | 28.90657 | 233147.214 | 42.891 | 0.01341 | 0.01185 | + | 4 b2 | 1.152374 | 31.35768 | 252916.771 | 39.539 | 0.01345 | 0.00002 | + | 5 b2 | 1.295140 | 35.24254 | 284250.269 | 35.180 | 0.31866 | 0.52753 | + | 6 b2 | 1.738543 | 47.30815 | 381565.979 | 26.208 | 0.10463 | 0.07024 | + | 7 b2 | 2.657090 | 72.30310 | 583163.794 | 17.148 | 0.02859 | 0.06978 | + | 8 b2 | 2.758854 | 75.07224 | 605498.414 | 16.515 | 0.44631 | 1.09872 | + | 9 b2 | 2.907394 | 79.11422 | 638099.228 | 15.672 | 0.12010 | 0.32804 | + | 10 b2 | 3.004958 | 81.76906 | 659511.959 | 15.163 | 0.25634 | 0.44650 | + ----------------------------------------------------------------------------------------------- + + + + + ------------------------------------------------------------------------ + total cpu-time : 0.21 seconds + total wall-time : 2.38 seconds + ------------------------------------------------------------------------ + + **** escf : all done **** + + + 2023-01-25 00:19:10.768 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_escf_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_escf_output.json new file mode 100644 index 0000000..17a0de5 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_escf_output.json @@ -0,0 +1,2586 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "EscfOnlyOutput", + "@version": "1.3.0", + "escf": { + "@module": "turbomoleio.output.data", + "@class": "EscfData", + "@version": "1.3.0", + "calc_type": "RPA TRIPLET-EXCITATION", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "EscfIterationData", + "@version": "1.3.0", + "steps": [ + [ + [ + "a1", + 0, + 0.1246374408123256 + ], + [ + "a2", + 9, + 7.348166357137622e-15 + ], + [ + "b1", + 0, + 0.09181206046462143 + ], + [ + "b2", + 10, + 5.215985075398134e-14 + ] + ], + [ + [ + "a1", + 10, + 7.745012815871526e-14 + ], + [ + "a2", + 9, + 7.348166357137622e-15 + ], + [ + "b1", + 10, + 4.175781234104372e-14 + ], + [ + "b2", + 10, + 5.215985075398134e-14 + ] + ] + ], + "converged": true + }, + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 5, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 155298, + "max_treated_vectors": 58, + "irrep_data": { + "a1": { + "tensor_space_dim": 24, + "n_roots": 10 + }, + "a2": { + "tensor_space_dim": 9, + "n_roots": 9 + }, + "b1": { + "tensor_space_dim": 19, + "n_roots": 10 + }, + "b2": { + "tensor_space_dim": 13, + "n_roots": 10 + } + }, + "gs_tot_en": -76.34300618267, + "excitations": { + "a1": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -76.01823453488805, + "osc_stre": 0.1313093878710515, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 99.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.778761 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.31433, + "anisotropy": 1.134437, + "moment": [ + [ + -1.162068, + 0.0, + 0.0 + ], + [ + 0.0, + -0.265591, + 0.0 + ], + [ + 0.0, + 0.0, + 0.11333 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.79291100961957, + "osc_stre": 0.174496449304758, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 98.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.689795 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -3.252909, + "anisotropy": 1.972194, + "moment": [ + [ + -2.392923, + 0.0, + 0.0 + ], + [ + 0.0, + -0.540236, + 0.0 + ], + [ + 0.0, + 0.0, + -0.319752 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.45404366868868, + "osc_stre": 0.09084914009269274, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 59.2 + }, + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 25.5 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 12.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.391529 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.202937, + "anisotropy": 0.869381, + "moment": [ + [ + -0.9741, + 0.0, + 0.0 + ], + [ + 0.0, + -0.189188, + 0.0 + ], + [ + 0.0, + 0.0, + -0.039649 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.41543956234747, + "osc_stre": 0.004405119560493983, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 70.8 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 24.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.084402 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -2.3237520000000003, + "anisotropy": 0.201491, + "moment": [ + [ + -0.760907, + 0.0, + 0.0 + ], + [ + 0.0, + -0.665696, + 0.0 + ], + [ + 0.0, + 0.0, + -0.897149 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.37035195620906, + "osc_stre": 0.2839929522540723, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 84.1 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 15.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.66179 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.5670349999999997, + "anisotropy": 0.241615, + "moment": [ + [ + -0.451837, + 0.0, + 0.0 + ], + [ + 0.0, + -0.432177, + 0.0 + ], + [ + 0.0, + 0.0, + -0.683021 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.33830226042343, + "osc_stre": 0.007296036371497148, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 92.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.104369 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 3.312759, + "anisotropy": 1.162583, + "moment": [ + [ + 0.512091, + 0.0, + 0.0 + ], + [ + 0.0, + 1.833394, + 0.0 + ], + [ + 0.0, + 0.0, + 0.967275 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.23643041802295, + "osc_stre": 0.05343328082331574, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 94.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.269129 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 2.392716, + "anisotropy": 1.621777, + "moment": [ + [ + 0.279761, + 0.0, + 0.0 + ], + [ + 0.0, + 0.234514, + 0.0 + ], + [ + 0.0, + 0.0, + 1.878441 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.95384853558053, + "osc_stre": 0.04811610985141787, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.227937 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.81279, + "anisotropy": 0.402903, + "moment": [ + [ + 0.539242, + 0.0, + 0.0 + ], + [ + 0.0, + 0.125974, + 0.0 + ], + [ + 0.0, + 0.0, + 0.147573 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.90839859812498, + "osc_stre": 0.04405808732321431, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 95.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.214631 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.2207, + "anisotropy": 0.563509, + "moment": [ + [ + -0.780046, + 0.0, + 0.0 + ], + [ + 0.0, + -0.182657, + 0.0 + ], + [ + 0.0, + 0.0, + -0.257997 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.84207924518309, + "osc_stre": 0.009423586862392063, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 95.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.097045 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.302259, + "anisotropy": 1.003757, + "moment": [ + [ + 0.713084, + 0.0, + 0.0 + ], + [ + 0.0, + -0.439145, + 0.0 + ], + [ + 0.0, + 0.0, + 0.02832 + ] + ] + } + } + ] + } + ], + "a2": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -76.00822783802636, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 99.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.001046 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.489597, + "moment": [ + [ + 0.0, + 0.282669, + 0.0 + ], + [ + 0.282669, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.57867260453982, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 99.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.001276 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.809306, + "moment": [ + [ + 0.0, + -0.467253, + 0.0 + ], + [ + -0.467253, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.12879342459158, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 92.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -5.5e-05 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.038458, + "moment": [ + [ + 0.0, + -0.599554, + 0.0 + ], + [ + -0.599554, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.0222176880603, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 92.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000574 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.74688, + "moment": [ + [ + 0.0, + -0.431211, + 0.0 + ], + [ + -0.431211, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.58540882603756, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 97.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000514 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.272294, + "moment": [ + [ + 0.0, + 0.157209, + 0.0 + ], + [ + 0.157209, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.36482833618534, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b2", + "energy": 68.79, + "spin": null + }, + "coeff": 96.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000644 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.191521, + "moment": [ + [ + 0.0, + -0.110574, + 0.0 + ], + [ + -0.110574, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.13420412838164, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "b1", + "energy": 81.78, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000115 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.413375, + "moment": [ + [ + 0.0, + 0.238662, + 0.0 + ], + [ + 0.238662, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.00661741363095, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 99.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000688 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.793484, + "moment": [ + [ + 0.0, + -0.458118, + 0.0 + ], + [ + -0.458118, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -55.10014038527046, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "a1", + "energy": -510.23, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 100.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 3e-06 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.026689, + "moment": [ + [ + 0.0, + 0.015409, + 0.0 + ], + [ + 0.015409, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "b1": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.94231204094471, + "osc_stre": 0.2262610442217877, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.920331, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.001742, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.644868, + "moment": [ + [ + 0.0, + 0.0, + -0.372315 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.372315, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.8559820312836, + "osc_stre": 0.2777796399824467, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 97.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.924955, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000309, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.552693, + "moment": [ + [ + 0.0, + 0.0, + 0.319097 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.319097, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.526049332718, + "osc_stre": 0.3581528903420834, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 98.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.810924, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.002865, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.964278, + "moment": [ + [ + 0.0, + 0.0, + -0.556726 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.556726, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.34552516922788, + "osc_stre": 0.08414035200812718, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 92.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.35571, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000818, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.036339, + "moment": [ + [ + 0.0, + 0.0, + -0.59833 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.59833, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.28797115415371, + "osc_stre": 0.2214315864696532, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 90.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.561089, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000368, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.373781, + "moment": [ + [ + 0.0, + 0.0, + -0.215802 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.215802, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.05974130599394, + "osc_stre": 0.1701379379535982, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 78.9 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 21.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.445952, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.00161, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.164301, + "moment": [ + [ + 0.0, + 0.0, + -0.67221 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.67221, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.00049027457096, + "osc_stre": 0.005612486793166832, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 78.8 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 20.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.079189, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000729, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.384568, + "moment": [ + [ + 0.0, + 0.0, + 0.22203 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.22203, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.92062784645103, + "osc_stre": 0.001383020408469612, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 98.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.03819, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000984, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.17932, + "moment": [ + [ + 0.0, + 0.0, + -0.680881 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.680881, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.79144022404836, + "osc_stre": 0.0311461276358944, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.173525, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000428, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.516707, + "moment": [ + [ + 0.0, + 0.0, + -0.298321 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.298321, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.44746414239671, + "osc_stre": 0.09313921044836769, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.271485, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000977, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.656364, + "moment": [ + [ + 0.0, + 0.0, + 0.378952 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.378952, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "b2": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -76.08891309318071, + "osc_stre": 0.01444211774765394, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 100.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.291988, + 0.0 + ], + "magnetic_dipole": [ + -0.000282, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.1709, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.098669 + ], + [ + 0.0, + -0.098669, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.4998229128459, + "osc_stre": 0.1866850354372666, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 99.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.576288, + 0.0 + ], + "magnetic_dipole": [ + 0.001725, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.451549, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.260702 + ], + [ + 0.0, + -0.260702, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.28070931032175, + "osc_stre": 0.01184729127031465, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 84.2 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 15.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.12934, + 0.0 + ], + "magnetic_dipole": [ + -0.000399, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.470922, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.849237 + ], + [ + 0.0, + 0.849237, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.19063257920865, + "osc_stre": 1.706350575088063e-05, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 84.2 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 15.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.004713, + 0.0 + ], + "magnetic_dipole": [ + 0.000723, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.50837, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.293507 + ], + [ + 0.0, + -0.293507, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.0478666594856, + "osc_stre": 0.52752901174764, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.781647, + 0.0 + ], + "magnetic_dipole": [ + -0.002174, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.520233, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.300356 + ], + [ + 0.0, + 0.300356, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.60446365779657, + "osc_stre": 0.07023608050783973, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 99.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.246169, + 0.0 + ], + "magnetic_dipole": [ + 0.001221, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.063929, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.036909 + ], + [ + 0.0, + -0.036909, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.68591641921864, + "osc_stre": 0.06977753602944474, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 8, + "irrep": "a1", + "energy": 67.45, + "spin": null + }, + "coeff": 91.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.198472, + 0.0 + ], + "magnetic_dipole": [ + 0.00086, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.129434, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.074729 + ], + [ + 0.0, + -0.074729, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.58415240678939, + "osc_stre": 1.098716013399029, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b2", + "energy": 68.79, + "spin": null + }, + "coeff": 91.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.772901, + 0.0 + ], + "magnetic_dipole": [ + 0.003078, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.272895, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.734906 + ], + [ + 0.0, + -0.734906, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.43561216778127, + "osc_stre": 0.3280400058904574, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 95.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.411393, + 0.0 + ], + "magnetic_dipole": [ + 0.00117, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.340846, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.196787 + ], + [ + 0.0, + -0.196787, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.33804858243694, + "osc_stre": 0.4465036699568586, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 9, + "irrep": "a1", + "energy": 77.83, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.472105, + 0.0 + ], + "magnetic_dipole": [ + 0.002567, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.789818, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.456002 + ], + [ + 0.0, + -0.456002, + 0.0 + ] + ] + } + } + ] + } + ] + } + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:08.451000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:10.768000" + }, + "cpu_time": 0.21, + "wall_time": 2.38 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "escf" + } +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_output.json new file mode 100644 index 0000000..53bf85d --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_output.json @@ -0,0 +1,2706 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "EscfOutput", + "@version": "1.3.0", + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": null, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "escf": { + "@module": "turbomoleio.output.data", + "@class": "EscfData", + "@version": "1.3.0", + "calc_type": "RPA TRIPLET-EXCITATION", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "EscfIterationData", + "@version": "1.3.0", + "steps": [ + [ + [ + "a1", + 0, + 0.1246374408123256 + ], + [ + "a2", + 9, + 7.348166357137622e-15 + ], + [ + "b1", + 0, + 0.09181206046462143 + ], + [ + "b2", + 10, + 5.215985075398134e-14 + ] + ], + [ + [ + "a1", + 10, + 7.745012815871526e-14 + ], + [ + "a2", + 9, + 7.348166357137622e-15 + ], + [ + "b1", + 10, + 4.175781234104372e-14 + ], + [ + "b2", + 10, + 5.215985075398134e-14 + ] + ] + ], + "converged": true + }, + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 5, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 155298, + "max_treated_vectors": 58, + "irrep_data": { + "a1": { + "tensor_space_dim": 24, + "n_roots": 10 + }, + "a2": { + "tensor_space_dim": 9, + "n_roots": 9 + }, + "b1": { + "tensor_space_dim": 19, + "n_roots": 10 + }, + "b2": { + "tensor_space_dim": 13, + "n_roots": 10 + } + }, + "gs_tot_en": -76.34300618267, + "excitations": { + "a1": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -76.01823453488805, + "osc_stre": 0.1313093878710515, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 99.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.778761 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.31433, + "anisotropy": 1.134437, + "moment": [ + [ + -1.162068, + 0.0, + 0.0 + ], + [ + 0.0, + -0.265591, + 0.0 + ], + [ + 0.0, + 0.0, + 0.11333 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.79291100961957, + "osc_stre": 0.174496449304758, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 98.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.689795 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -3.252909, + "anisotropy": 1.972194, + "moment": [ + [ + -2.392923, + 0.0, + 0.0 + ], + [ + 0.0, + -0.540236, + 0.0 + ], + [ + 0.0, + 0.0, + -0.319752 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.45404366868868, + "osc_stre": 0.09084914009269274, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 59.2 + }, + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 25.5 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 12.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.391529 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.202937, + "anisotropy": 0.869381, + "moment": [ + [ + -0.9741, + 0.0, + 0.0 + ], + [ + 0.0, + -0.189188, + 0.0 + ], + [ + 0.0, + 0.0, + -0.039649 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.41543956234747, + "osc_stre": 0.004405119560493983, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 70.8 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 24.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.084402 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -2.3237520000000003, + "anisotropy": 0.201491, + "moment": [ + [ + -0.760907, + 0.0, + 0.0 + ], + [ + 0.0, + -0.665696, + 0.0 + ], + [ + 0.0, + 0.0, + -0.897149 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.37035195620906, + "osc_stre": 0.2839929522540723, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 84.1 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 15.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.66179 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.5670349999999997, + "anisotropy": 0.241615, + "moment": [ + [ + -0.451837, + 0.0, + 0.0 + ], + [ + 0.0, + -0.432177, + 0.0 + ], + [ + 0.0, + 0.0, + -0.683021 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.33830226042343, + "osc_stre": 0.007296036371497148, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 92.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.104369 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 3.312759, + "anisotropy": 1.162583, + "moment": [ + [ + 0.512091, + 0.0, + 0.0 + ], + [ + 0.0, + 1.833394, + 0.0 + ], + [ + 0.0, + 0.0, + 0.967275 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.23643041802295, + "osc_stre": 0.05343328082331574, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 94.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.269129 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 2.392716, + "anisotropy": 1.621777, + "moment": [ + [ + 0.279761, + 0.0, + 0.0 + ], + [ + 0.0, + 0.234514, + 0.0 + ], + [ + 0.0, + 0.0, + 1.878441 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.95384853558053, + "osc_stre": 0.04811610985141787, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.227937 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.81279, + "anisotropy": 0.402903, + "moment": [ + [ + 0.539242, + 0.0, + 0.0 + ], + [ + 0.0, + 0.125974, + 0.0 + ], + [ + 0.0, + 0.0, + 0.147573 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.90839859812498, + "osc_stre": 0.04405808732321431, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 95.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.214631 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.2207, + "anisotropy": 0.563509, + "moment": [ + [ + -0.780046, + 0.0, + 0.0 + ], + [ + 0.0, + -0.182657, + 0.0 + ], + [ + 0.0, + 0.0, + -0.257997 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.84207924518309, + "osc_stre": 0.009423586862392063, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 95.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.097045 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.302259, + "anisotropy": 1.003757, + "moment": [ + [ + 0.713084, + 0.0, + 0.0 + ], + [ + 0.0, + -0.439145, + 0.0 + ], + [ + 0.0, + 0.0, + 0.02832 + ] + ] + } + } + ] + } + ], + "a2": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -76.00822783802636, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 99.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.001046 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.489597, + "moment": [ + [ + 0.0, + 0.282669, + 0.0 + ], + [ + 0.282669, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.57867260453982, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 99.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.001276 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.809306, + "moment": [ + [ + 0.0, + -0.467253, + 0.0 + ], + [ + -0.467253, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.12879342459158, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 92.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -5.5e-05 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.038458, + "moment": [ + [ + 0.0, + -0.599554, + 0.0 + ], + [ + -0.599554, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.0222176880603, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 92.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000574 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.74688, + "moment": [ + [ + 0.0, + -0.431211, + 0.0 + ], + [ + -0.431211, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.58540882603756, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 97.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000514 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.272294, + "moment": [ + [ + 0.0, + 0.157209, + 0.0 + ], + [ + 0.157209, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.36482833618534, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b2", + "energy": 68.79, + "spin": null + }, + "coeff": 96.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000644 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.191521, + "moment": [ + [ + 0.0, + -0.110574, + 0.0 + ], + [ + -0.110574, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.13420412838164, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "b1", + "energy": 81.78, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000115 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.413375, + "moment": [ + [ + 0.0, + 0.238662, + 0.0 + ], + [ + 0.238662, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.00661741363095, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 99.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000688 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.793484, + "moment": [ + [ + 0.0, + -0.458118, + 0.0 + ], + [ + -0.458118, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -55.10014038527046, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "a1", + "energy": -510.23, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 100.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 3e-06 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.026689, + "moment": [ + [ + 0.0, + 0.015409, + 0.0 + ], + [ + 0.015409, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "b1": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.94231204094471, + "osc_stre": 0.2262610442217877, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.920331, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.001742, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.644868, + "moment": [ + [ + 0.0, + 0.0, + -0.372315 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.372315, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.8559820312836, + "osc_stre": 0.2777796399824467, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 97.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.924955, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000309, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.552693, + "moment": [ + [ + 0.0, + 0.0, + 0.319097 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.319097, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.526049332718, + "osc_stre": 0.3581528903420834, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 98.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.810924, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.002865, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.964278, + "moment": [ + [ + 0.0, + 0.0, + -0.556726 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.556726, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.34552516922788, + "osc_stre": 0.08414035200812718, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 92.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.35571, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000818, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.036339, + "moment": [ + [ + 0.0, + 0.0, + -0.59833 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.59833, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.28797115415371, + "osc_stre": 0.2214315864696532, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 90.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.561089, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000368, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.373781, + "moment": [ + [ + 0.0, + 0.0, + -0.215802 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.215802, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.05974130599394, + "osc_stre": 0.1701379379535982, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 78.9 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 21.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.445952, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.00161, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.164301, + "moment": [ + [ + 0.0, + 0.0, + -0.67221 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.67221, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.00049027457096, + "osc_stre": 0.005612486793166832, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 78.8 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 20.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.079189, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000729, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.384568, + "moment": [ + [ + 0.0, + 0.0, + 0.22203 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.22203, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.92062784645103, + "osc_stre": 0.001383020408469612, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 98.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.03819, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000984, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.17932, + "moment": [ + [ + 0.0, + 0.0, + -0.680881 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.680881, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.79144022404836, + "osc_stre": 0.0311461276358944, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.173525, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000428, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.516707, + "moment": [ + [ + 0.0, + 0.0, + -0.298321 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.298321, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.44746414239671, + "osc_stre": 0.09313921044836769, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.271485, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000977, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.656364, + "moment": [ + [ + 0.0, + 0.0, + 0.378952 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.378952, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "b2": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -76.08891309318071, + "osc_stre": 0.01444211774765394, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 100.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.291988, + 0.0 + ], + "magnetic_dipole": [ + -0.000282, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.1709, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.098669 + ], + [ + 0.0, + -0.098669, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.4998229128459, + "osc_stre": 0.1866850354372666, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 99.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.576288, + 0.0 + ], + "magnetic_dipole": [ + 0.001725, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.451549, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.260702 + ], + [ + 0.0, + -0.260702, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.28070931032175, + "osc_stre": 0.01184729127031465, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 84.2 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 15.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.12934, + 0.0 + ], + "magnetic_dipole": [ + -0.000399, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.470922, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.849237 + ], + [ + 0.0, + 0.849237, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.19063257920865, + "osc_stre": 1.706350575088063e-05, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 84.2 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 15.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.004713, + 0.0 + ], + "magnetic_dipole": [ + 0.000723, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.50837, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.293507 + ], + [ + 0.0, + -0.293507, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -75.0478666594856, + "osc_stre": 0.52752901174764, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.781647, + 0.0 + ], + "magnetic_dipole": [ + -0.002174, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.520233, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.300356 + ], + [ + 0.0, + 0.300356, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -74.60446365779657, + "osc_stre": 0.07023608050783973, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 99.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.246169, + 0.0 + ], + "magnetic_dipole": [ + 0.001221, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.063929, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.036909 + ], + [ + 0.0, + -0.036909, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.68591641921864, + "osc_stre": 0.06977753602944474, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 8, + "irrep": "a1", + "energy": 67.45, + "spin": null + }, + "coeff": 91.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.198472, + 0.0 + ], + "magnetic_dipole": [ + 0.00086, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.129434, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.074729 + ], + [ + 0.0, + -0.074729, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.58415240678939, + "osc_stre": 1.098716013399029, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b2", + "energy": 68.79, + "spin": null + }, + "coeff": 91.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.772901, + 0.0 + ], + "magnetic_dipole": [ + 0.003078, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.272895, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.734906 + ], + [ + 0.0, + -0.734906, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.43561216778127, + "osc_stre": 0.3280400058904574, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 95.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.411393, + 0.0 + ], + "magnetic_dipole": [ + 0.00117, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.340846, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.196787 + ], + [ + 0.0, + -0.196787, + 0.0 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -73.33804858243694, + "osc_stre": 0.4465036699568586, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 9, + "irrep": "a1", + "energy": 77.83, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.472105, + 0.0 + ], + "magnetic_dipole": [ + 0.002567, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.789818, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.456002 + ], + [ + 0.0, + -0.456002, + 0.0 + ] + ] + } + } + ] + } + ] + } + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790525 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 1, + "sites": [ + { + "name": "O", + "species": [ + { + "element": "O", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + -0.38395982917561094 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + 0.7499151287230262, + 0.0, + 0.19197991458780547 + ], + "properties": {} + }, + { + "name": "H", + "species": [ + { + "element": "H", + "occu": 1 + } + ], + "xyz": [ + -0.7499151287230262, + 0.0, + 0.19197991458780547 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": 47 + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:08.451000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:10.768000" + }, + "cpu_time": 0.21, + "wall_time": 2.38 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "escf" + }, + "cosmo": null, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 3.3e-11, + "thize": 1e-05, + "thime": 5 + }, + "symmetry": { + "@module": "turbomoleio.output.data", + "@class": "SymmetryData", + "@version": "1.3.0", + "symbol": "c2v", + "n_reps": 4, + "reps": [ + "a1", + "a2", + "b1", + "b2" + ] + } +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_parser.json new file mode 100644 index 0000000..22f4820 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/h2o_ridft_rpat/ref_parser.json @@ -0,0 +1,2558 @@ +{ + "all_done": true, + "header": { + "executable": "escf", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:08.451000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790525 + ] + }, + "coordinates": { + "coords": [ + [ + 0.0, + 0.0, + -0.72557892 + ], + [ + 1.41713421, + 0.0, + 0.36278946 + ], + [ + -1.41713421, + 0.0, + 0.36278946 + ] + ], + "species": [ + "o", + "h", + "h" + ], + "charges": [ + 8.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": 47 + }, + "symmetry": { + "symbol": "c2v", + "n_reps": 4, + "reps": [ + "a1", + "a2", + "b1", + "b2" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": null, + "pre_scf_run": null, + "scf_iterations": null, + "scf_energies": null, + "cosmo_results": null, + "electrostatic_moments": null, + "timings": { + "cpu_time": 0.21, + "wall_time": 2.38, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:10.768000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 3.3e-11, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": { + "calc_type": "RPA TRIPLET-EXCITATION", + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 5, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 155298, + "max_treated_vectors": 58, + "irrep_data": { + "a1": { + "tensor_space_dim": 24, + "n_roots": 10 + }, + "a2": { + "tensor_space_dim": 9, + "n_roots": 9 + }, + "b1": { + "tensor_space_dim": 19, + "n_roots": 10 + }, + "b2": { + "tensor_space_dim": 13, + "n_roots": 10 + } + } + }, + "escf_iterations": { + "steps": [ + [ + [ + "a1", + 0, + 0.1246374408123256 + ], + [ + "a2", + 9, + 7.348166357137622e-15 + ], + [ + "b1", + 0, + 0.09181206046462143 + ], + [ + "b2", + 10, + 5.215985075398134e-14 + ] + ], + [ + [ + "a1", + 10, + 7.745012815871526e-14 + ], + [ + "a2", + 9, + 7.348166357137622e-15 + ], + [ + "b1", + 10, + 4.175781234104372e-14 + ], + [ + "b2", + 10, + 5.215985075398134e-14 + ] + ] + ], + "converged": true + }, + "escf_gs_total_en": -76.34300618267, + "escf_excitations": { + "a1": [ + { + "tot_en": -76.01823453488805, + "osc_stre": 0.1313093878710515, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 99.6 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.778761 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.31433, + "anisotropy": 1.134437, + "moment": [ + [ + -1.162068, + 0.0, + 0.0 + ], + [ + 0.0, + -0.265591, + 0.0 + ], + [ + 0.0, + 0.0, + 0.11333 + ] + ] + } + } + ] + }, + { + "tot_en": -75.79291100961957, + "osc_stre": 0.174496449304758, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 98.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.689795 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -3.252909, + "anisotropy": 1.972194, + "moment": [ + [ + -2.392923, + 0.0, + 0.0 + ], + [ + 0.0, + -0.540236, + 0.0 + ], + [ + 0.0, + 0.0, + -0.319752 + ] + ] + } + } + ] + }, + { + "tot_en": -75.45404366868868, + "osc_stre": 0.09084914009269274, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 59.2 + }, + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 25.5 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 12.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.391529 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.202937, + "anisotropy": 0.869381, + "moment": [ + [ + -0.9741, + 0.0, + 0.0 + ], + [ + 0.0, + -0.189188, + 0.0 + ], + [ + 0.0, + 0.0, + -0.039649 + ] + ] + } + } + ] + }, + { + "tot_en": -75.41543956234747, + "osc_stre": 0.004405119560493983, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 70.8 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 24.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.084402 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -2.3237520000000003, + "anisotropy": 0.201491, + "moment": [ + [ + -0.760907, + 0.0, + 0.0 + ], + [ + 0.0, + -0.665696, + 0.0 + ], + [ + 0.0, + 0.0, + -0.897149 + ] + ] + } + } + ] + }, + { + "tot_en": -75.37035195620906, + "osc_stre": 0.2839929522540723, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 84.1 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 15.1 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.66179 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.5670349999999997, + "anisotropy": 0.241615, + "moment": [ + [ + -0.451837, + 0.0, + 0.0 + ], + [ + 0.0, + -0.432177, + 0.0 + ], + [ + 0.0, + 0.0, + -0.683021 + ] + ] + } + } + ] + }, + { + "tot_en": -75.33830226042343, + "osc_stre": 0.007296036371497148, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 92.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.104369 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 3.312759, + "anisotropy": 1.162583, + "moment": [ + [ + 0.512091, + 0.0, + 0.0 + ], + [ + 0.0, + 1.833394, + 0.0 + ], + [ + 0.0, + 0.0, + 0.967275 + ] + ] + } + } + ] + }, + { + "tot_en": -75.23643041802295, + "osc_stre": 0.05343328082331574, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 94.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.269129 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 2.392716, + "anisotropy": 1.621777, + "moment": [ + [ + 0.279761, + 0.0, + 0.0 + ], + [ + 0.0, + 0.234514, + 0.0 + ], + [ + 0.0, + 0.0, + 1.878441 + ] + ] + } + } + ] + }, + { + "tot_en": -74.95384853558053, + "osc_stre": 0.04811610985141787, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + -0.227937 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.81279, + "anisotropy": 0.402903, + "moment": [ + [ + 0.539242, + 0.0, + 0.0 + ], + [ + 0.0, + 0.125974, + 0.0 + ], + [ + 0.0, + 0.0, + 0.147573 + ] + ] + } + } + ] + }, + { + "tot_en": -74.90839859812498, + "osc_stre": 0.04405808732321431, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 95.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.214631 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.2207, + "anisotropy": 0.563509, + "moment": [ + [ + -0.780046, + 0.0, + 0.0 + ], + [ + 0.0, + -0.182657, + 0.0 + ], + [ + 0.0, + 0.0, + -0.257997 + ] + ] + } + } + ] + }, + { + "tot_en": -74.84207924518309, + "osc_stre": 0.009423586862392063, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 95.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.097045 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.302259, + "anisotropy": 1.003757, + "moment": [ + [ + 0.713084, + 0.0, + 0.0 + ], + [ + 0.0, + -0.439145, + 0.0 + ], + [ + 0.0, + 0.0, + 0.02832 + ] + ] + } + } + ] + } + ], + "a2": [ + { + "tot_en": -76.00822783802636, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 99.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.001046 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.489597, + "moment": [ + [ + 0.0, + 0.282669, + 0.0 + ], + [ + 0.282669, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.57867260453982, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 99.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.001276 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.809306, + "moment": [ + [ + 0.0, + -0.467253, + 0.0 + ], + [ + -0.467253, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.12879342459158, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 92.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -5.5e-05 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.038458, + "moment": [ + [ + 0.0, + -0.599554, + 0.0 + ], + [ + -0.599554, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.0222176880603, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 92.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000574 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.74688, + "moment": [ + [ + 0.0, + -0.431211, + 0.0 + ], + [ + -0.431211, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -73.58540882603756, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 97.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000514 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.272294, + "moment": [ + [ + 0.0, + 0.157209, + 0.0 + ], + [ + 0.157209, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -73.36482833618534, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b2", + "energy": 68.79, + "spin": null + }, + "coeff": 96.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000644 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.191521, + "moment": [ + [ + 0.0, + -0.110574, + 0.0 + ], + [ + -0.110574, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -73.13420412838164, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "b1", + "energy": 81.78, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000115 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.413375, + "moment": [ + [ + 0.0, + 0.238662, + 0.0 + ], + [ + 0.238662, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -73.00661741363095, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 99.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + -0.000688 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.793484, + "moment": [ + [ + 0.0, + -0.458118, + 0.0 + ], + [ + -0.458118, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -55.10014038527046, + "osc_stre": 0.0, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "a1", + "energy": -510.23, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 100.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 3e-06 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.026689, + "moment": [ + [ + 0.0, + 0.015409, + 0.0 + ], + [ + 0.015409, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "b1": [ + { + "tot_en": -75.94231204094471, + "osc_stre": 0.2262610442217877, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.920331, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.001742, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.644868, + "moment": [ + [ + 0.0, + 0.0, + -0.372315 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.372315, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.8559820312836, + "osc_stre": 0.2777796399824467, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 97.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.924955, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000309, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.552693, + "moment": [ + [ + 0.0, + 0.0, + 0.319097 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.319097, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.526049332718, + "osc_stre": 0.3581528903420834, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 98.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.810924, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.002865, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.964278, + "moment": [ + [ + 0.0, + 0.0, + -0.556726 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.556726, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.34552516922788, + "osc_stre": 0.08414035200812718, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b1", + "energy": 3.09, + "spin": null + }, + "coeff": 92.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.35571, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000818, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.036339, + "moment": [ + [ + 0.0, + 0.0, + -0.59833 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.59833, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.28797115415371, + "osc_stre": 0.2214315864696532, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 90.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.561089, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000368, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.373781, + "moment": [ + [ + 0.0, + 0.0, + -0.215802 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.215802, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.05974130599394, + "osc_stre": 0.1701379379535982, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 78.9 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 21.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.445952, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.00161, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.164301, + "moment": [ + [ + 0.0, + 0.0, + -0.67221 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.67221, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.00049027457096, + "osc_stre": 0.005612486793166832, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 78.8 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 20.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.079189, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000729, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.384568, + "moment": [ + [ + 0.0, + 0.0, + 0.22203 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.22203, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -74.92062784645103, + "osc_stre": 0.001383020408469612, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b1", + "energy": 14.8, + "spin": null + }, + "coeff": 98.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.03819, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000984, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.17932, + "moment": [ + [ + 0.0, + 0.0, + -0.680881 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.680881, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -74.79144022404836, + "osc_stre": 0.0311461276358944, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.173525, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.000428, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.516707, + "moment": [ + [ + 0.0, + 0.0, + -0.298321 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.298321, + 0.0, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -74.44746414239671, + "osc_stre": 0.09313921044836769, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "b1", + "energy": 27.75, + "spin": null + }, + "coeff": 99.2 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.271485, + 0.0, + 0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.000977, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.656364, + "moment": [ + [ + 0.0, + 0.0, + 0.378952 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.378952, + 0.0, + 0.0 + ] + ] + } + } + ] + } + ], + "b2": [ + { + "tot_en": -76.08891309318071, + "osc_stre": 0.01444211774765394, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 4, + "irrep": "a1", + "energy": 0.92, + "spin": null + }, + "coeff": 100.0 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.291988, + 0.0 + ], + "magnetic_dipole": [ + -0.000282, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.1709, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.098669 + ], + [ + 0.0, + -0.098669, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.4998229128459, + "osc_stre": 0.1866850354372666, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 5, + "irrep": "a1", + "energy": 17.22, + "spin": null + }, + "coeff": 99.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.576288, + 0.0 + ], + "magnetic_dipole": [ + 0.001725, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.451549, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.260702 + ], + [ + 0.0, + -0.260702, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.28070931032175, + "osc_stre": 0.01184729127031465, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 84.2 + }, + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 15.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.12934, + 0.0 + ], + "magnetic_dipole": [ + -0.000399, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.470922, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.849237 + ], + [ + 0.0, + 0.849237, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.19063257920865, + "osc_stre": 1.706350575088063e-05, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 84.2 + }, + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 6, + "irrep": "a1", + "energy": 23.83, + "spin": null + }, + "coeff": 15.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.004713, + 0.0 + ], + "magnetic_dipole": [ + 0.000723, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.50837, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.293507 + ], + [ + 0.0, + -0.293507, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -75.0478666594856, + "osc_stre": 0.52752901174764, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 7, + "irrep": "a1", + "energy": 30.18, + "spin": null + }, + "coeff": 99.5 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + -0.781647, + 0.0 + ], + "magnetic_dipole": [ + -0.002174, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.520233, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.300356 + ], + [ + 0.0, + 0.300356, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -74.60446365779657, + "osc_stre": 0.07023608050783973, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 2, + "irrep": "a1", + "energy": -24.72, + "spin": null + }, + "virt_orb": { + "index": 2, + "irrep": "b2", + "energy": 23.42, + "spin": null + }, + "coeff": 99.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.246169, + 0.0 + ], + "magnetic_dipole": [ + 0.001221, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.063929, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.036909 + ], + [ + 0.0, + -0.036909, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -73.68591641921864, + "osc_stre": 0.06977753602944474, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 8, + "irrep": "a1", + "energy": 67.45, + "spin": null + }, + "coeff": 91.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.198472, + 0.0 + ], + "magnetic_dipole": [ + 0.00086, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.129434, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.074729 + ], + [ + 0.0, + -0.074729, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -73.58415240678939, + "osc_stre": 1.098716013399029, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 3, + "irrep": "a1", + "energy": -8.44, + "spin": null + }, + "virt_orb": { + "index": 3, + "irrep": "b2", + "energy": 68.79, + "spin": null + }, + "coeff": 91.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.772901, + 0.0 + ], + "magnetic_dipole": [ + 0.003078, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 1.272895, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.734906 + ], + [ + 0.0, + -0.734906, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -73.43561216778127, + "osc_stre": 0.3280400058904574, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b1", + "energy": -13.01, + "spin": null + }, + "virt_orb": { + "index": 1, + "irrep": "a2", + "energy": 67.9, + "spin": null + }, + "coeff": 95.3 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.411393, + 0.0 + ], + "magnetic_dipole": [ + 0.00117, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.340846, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.196787 + ], + [ + 0.0, + -0.196787, + 0.0 + ] + ] + } + } + ] + }, + { + "tot_en": -73.33804858243694, + "osc_stre": 0.4465036699568586, + "rot_stre": 0.0, + "dominant_contributions": [ + { + "occ_orb": { + "index": 1, + "irrep": "b2", + "energy": -6.4, + "spin": null + }, + "virt_orb": { + "index": 9, + "irrep": "a1", + "energy": 77.83, + "spin": null + }, + "coeff": 97.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.0, + 0.472105, + 0.0 + ], + "magnetic_dipole": [ + 0.002567, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 0.0, + "anisotropy": 0.789818, + "moment": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + -0.456002 + ], + [ + 0.0, + -0.456002, + 0.0 + ] + ] + } + } + ] + } + ] + }, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/escf.log b/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/escf.log new file mode 100644 index 0000000..e3792c1 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/escf.log @@ -0,0 +1,1347 @@ + + escf (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:19:02.284 + + + + + e s c f + + TURBOMOLE GmbH + + + integral direct evaluation of + + * excitation energies and transition moments + * dynamic response properties + * stabilities + + + + references (see also programs dscf and ridft) + + implementation and benchmarks (review) + F. Furche and D. Rappoport, + "Density functional methods for excited states: + equilibrium structure and electronic spectra", + ch. III of "Computational Photochemistry", ed. by + M. Olivucci, vol. 16 of "Theoretical and Computational + Chemistry", Elsevier, Amsterdam, 2005. + + Bethe-Salpeter equation + K. Krause and W. Klopper, + J. Comput. Chem. 38 (2017) 383. + + 2c BSE, GW and hybrid TD-DFT + C. Holzer and W. Klopper + J. Chem. Phys. 150, 204116 (2019) + + nonorthonormal Krylov space methods + F. Furche, B. T. Krull, B. D. Nguyen, and J. Kwon, + J. Chem. Phys. 144 (2016), 174105. + + two-component GW quasi particle energies + M. Kuehn and F. Weigend, + J. Chem. Theory Comput. 11 (2015), 969. + + two-component TDDFT with spin-orbit coupling + M. Kuehn and F. Weigend, + J. Chem. Theory Comput. 9 (2013), 5341. + M. Kuehn and F. Weigend, + J. Chem. Phys. 142 (2015), 034116. + + GW quasi particle energies + M. J. van Setten, F. Weigend, and F. Evers, + J. Chem. Theory Comput. 9 (2013), 232. + + Fast GW methods: RIGW, contour deformation + J. Chem. Phys. 150, 204116 (2019) + + current-density dependent meta-GGA Linear Response + J. E. Bates and F. Furche, + J. Chem. Phys. 137 (2012), 164105. + + spin-flip method + M. Kuehn and F. Weigend, + Chem. Phys. Chem. 12 (2011), 3331. + + RI-J method + R. Bauernschmitt, M. Haeser, O. Treutler, and R. Ahlrichs, + Chem. Phys. Lett. 264 (1997), 573. + + density functional implementation + R. Bauernschmitt and R. Ahlrichs, + Chem. Phys. Lett. 256 (1996), 454. + R. Bauernschmitt and R. Ahlrichs, + J. Chem. Phys. 104 (1996), 9047. + + UHF extension (RPA and CIS) + C. Ochsenfeld, J. Gauss, and R. Ahlrichs, + J. Chem. Phys. 103 (1995), 7401. + + integral direct algorithm + H. Weiss, R. Ahlrichs, and M. Haeser, + J. Chem. Phys. 99 (1993), 1262. + + Seminumerical and pseudospectral algorithms + C. Holzer, J. Chem. Phys. 153 (2020), 184115. + + Two-component static/dynamic polarizabilities, + and relativistic damped-response approach, + polarizabilities and damped response at GW-BSE level + M. Kehry, Y. J. Franzke, C. Holzer, and W. Klopper, + Mol. Phys. 118 (2020), e1755064 + + Nuclear spin-spin coupling constants + F. Mack, C. J. Schattenberg, M. Kaupp, F. Weigend, + J. Phys. Chem. A 2020, 124, 41, 8529 + + + + + UHF mode switched on ! + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + -1.15103064 -1.99364355 0.00000000 o 8.000 0 + 0.00000000 0.00000000 0.00000000 n 7.000 0 + -1.15103064 1.99364355 0.00000000 o 8.000 0 + 2.30206127 0.00000000 0.00000000 o 8.000 0 + + center of nuclear mass : 0.00000000 0.00000000 0.00000000 + center of nuclear charge: 0.00000000 0.00000000 0.00000000 + + ************************************************************************* + ridft_escf + ************************************************************************* + + + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 3 24 14 def-SV(P) [3s2p1d|7s4p1d] + n 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + --------------------------------------------------------------------------- + total: 4 96 56 + --------------------------------------------------------------------------- + + total number of primitive shells : 24 + total number of contracted shells : 24 + total number of cartesian basis functions : 60 + total number of SCF-basis functions : 56 + + + residuum convergence criterium : 0.10E-04 + + COSMO is enabled, use tighter integral screening thresholds + 7 + + integral neglect threshold : 0.33E-12 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + FOUND RI-J FLAG ! + + + AUXILIARY BASIS SET information: + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 3 39 37 def-SV(P) [6s3p3d1f|8s3p3d1f] + n 1 39 37 def-SV(P) [6s3p3d1f|8s3p3d1f] + --------------------------------------------------------------------------- + total: 4 156 148 + --------------------------------------------------------------------------- + + total number of primitive shells : 30 + total number of contracted shells : 52 + total number of cartesian basis functions : 172 + total number of SCF-basis functions : 148 + + RPA UHF-EXCITATION-CALCULATION (spin-conserved) + + FOUND DFT-FLAG ! + + + symmetry group of the molecule : c1 + + the group has the following generators : + c1(z) + + 1 symmetry operations found + + there are 1 real representations : a + + maximum number of shells which are related by symmetry : 1 + + IRREPs of excited states : a + + mo occupation : + irrep mo's occupied + a 56 16 + + number of basis functions : 56 + number of occupied orbitals : 16 + + ALPHA-Occupation: 16 + BETA-Occupation : 15 + COSMO: symmetry in response calc. w/out guarantee + ============================================================================== + COSMO switched on + ============================================================================== + COSMO stati: segments per atom: H 32 other atoms 92 + COSMO statistics: nps 240 npspher: 174 + COSMO surface: + number of segments: 240 + area (bohr**2): 267.911883 + volume (bohr**3): 374.012013 + COSMO: check number of disjunct cavities: + + ... OK contiguous cavity found + Using refractive index n = 1.30000000000000 + Screening function (n**2-1)/(n**2+0.5) = 0.315068493150685 + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 4 + partition function : becke + partition sharpness : 3 + + + ---------------------- + RI - INFORMATION + ---------------------- + + biggest AO integral is expected to be 4.776656448 + + Threshold for integral neglect (rithr2): 0.33E-12 + Threshold for integral neglect (rithr1): 0.33E-12 + + Contributions to RI integral batches: + neglected integral batches: 3 + direct contribution: 0 + memory contribution: 297 + Core memory available (ricore) 500 MiB + Core memory needed for (P|Q) and Cholesky 1 MiB + Core memory used for integrals 3 MiB + + **************************************** + Memory allocated for RIDFT 3 MiB + **************************************** + + MOs are in ASCII format ! + + + reading orbital data $uhfmo_alpha from file alpha + orbital characterization : scfconv=7 + + reading orbital data $uhfmo_beta from file beta + orbital characterization : scfconv=7 + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 7274 + + Calculating ground state density on molecular grid + + Integral of ground state total density: Na = 31.00031443604871 + + Integral of ground state spin density: Nb = 1.000026296764440 + + + all orbitals will be included in the transformation + + number of non-frozen orbitals : 56 + number of non-frozen occupied orbitals : 16 + all orbitals will be included in the transformation + + number of non-frozen orbitals : 56 + number of non-frozen occupied orbitals : 15 + + dimension of super-tensorspace: 1 + + IRREP tensor space dimension number of roots + + a 1255 10 + + maximum number of Davidson iterations set to 35 + + + machine precision: 2.22D-16 + + + logfile unrs_a will be constructed + + + Nonorthonormal Krylov Space Iteration + + + total number of roots to be determined: 10 + + + maximum core memory set to 500 MB, + corresponding to 8747 vectors in CAO basis + + + maximum number of simultaneously treated vectors (including degeneracy): 18 + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 1 a 0 7.883659515532002D-02 + + 2 a 0 2.178615279982761D-02 + + 3 a 0 3.048709095992678D-03 + + 4 a 1 5.923431214770775D-04 + + 5 a 5 1.460143461808554D-04 + + 6 a 9 2.590244602223270D-05 + + 7 a 10 9.666026785391291D-06 + + + converged! + + + Switching to fine grid + + preparing DFT numerical integration .... + Overall gridpoints after grid construction = 25272 + + Calculating ground state density on molecular grid + + Integral of ground state total density: Na = 30.99999497960500 + + Integral of ground state spin density: Nb = 1.000000046566693 + + + + Iteration IRREP Converged Max. Euclidean + roots residual norm + + 8 a 0 1.111836680211689D-04 + + + NOTE: Residual norms are larger than 1.00D-05 due to mgrid option! + + Eigenpairs written on logfile unrs_a + + + + IRREP Vector Eigenvalue Euclidean residual norm + + a 1 4.404678736480582D-03 2.600025682455084D-05 + 2 4.405956467254631D-03 2.691682032419016D-05 + 3 9.537025330603622D-03 6.623579272014085D-05 + 4 9.538097754898667D-03 7.869282285924706D-05 + 5 3.472725877751889D-02 3.615431700966352D-05 + 6 3.649860120850448D-02 1.111836680211689D-04 + 7 3.650044715823448D-02 9.795608322480321D-05 + 8 4.951021926165934D-02 4.116895735229065D-05 + 9 4.951710495167214D-02 4.923040673325581D-05 + 10 6.653853213727975D-02 3.749479763378315D-05 + + + + + + + Selection rules for point group c1 + + + Subduction with respect to c1 : + + Polar vector representation: a + + Axial vector representation: a + + Symmetric second rank tensor representation: a + + + + + Ground state + + + Total energy: -280.0695809101000 + + Charge: + + elec nuc total + + -31.000000 31.000000 -0.000000 + + + Electric dipole moment: + + elec nuc total + + x 0.000456 0.000000 0.000456 Norm: 0.000461 + y 0.000059 0.000000 0.000059 + z -0.000025 0.000000 -0.000025 Norm / debye: 0.001171 + + + Electric quadrupole moment: + + elec nuc total + + xx -80.296747 63.593833 -16.702914 + yy -80.297434 63.593833 -16.703601 1/3*trace: -15.961806 + zz -14.478903 0.000000 -14.478903 + xy 0.000015 0.000000 0.000015 + xz -0.000001 0.000000 -0.000001 Anisotropy: 2.224354 + yz -0.000022 0.000000 -0.000022 + + + + ============================================================================== + + I R R E P a + + ============================================================================== + + + Excitation is electric dipole allowed + + Excitation is magnetic dipole allowed + + Excitation is electric quadrupole allowed + + + + + 1 a excitation + + + Total energy: -280.0032131563601 + + Excitation energy: 0.6636775373990431E-01 + + Excitation energy / eV: 1.805959239929535 + + Excitation energy / nm: 686.5284734294775 + + Excitation energy / cm^(-1): 14566.03824245404 + + + Oscillator strength: + + velocity representation: 0.1783312568027102E-09 + + length representation: 0.3719565467446828E-09 + + mixed representation: 0.2564349468506299E-09 + + + Rotatory strength: + + velocity representation: -0.1465175492275226E-06 + + velocity rep. / 10^(-40)erg*cm^3: -0.9465739368137792E-02 + + length representation: -0.2148551926178635E-06 + + length rep. / 10^(-40)erg*cm^3: -0.1388068027300655E-01 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 15 a beta -8.83 16 a beta -6.90 98.4 + + = 0.0019384779 + = 0.9980615221 + = -0.0007884730 + + 1/2 = 0.4992115270 + 1/2 = 0.5007884730 + + = 1.0000000000 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000060 Norm: 0.000063 + y -0.000019 + z -0.000005 Norm / debye: 0.000161 + + + Electric transition dipole moment (length rep.): + + x 0.000089 Norm: 0.000092 + y -0.000020 + z -0.000003 Norm / debye: 0.000233 + + + Magnetic transition dipole moment / i: + + x -0.002347 Norm: 0.002360 + y 0.000244 + z 0.000000 Norm / Bohr mag.: 0.646737 + + + Electric quadrupole transition moment: + + xx 0.000104 + yy -0.000096 1/3*trace: 0.000001 + zz -0.000005 + xy 0.000016 + xz 0.021883 Anisotropy: 0.366824 + yz 0.210652 + + + + + 2 a excitation + + + Total energy: -280.0032035309166 + + Excitation energy: 0.6637737918338318E-01 + + Excitation energy / eV: 1.806221161685351 + + Excitation energy / nm: 686.4289193178369 + + Excitation energy / cm^(-1): 14568.15078310689 + + + Oscillator strength: + + velocity representation: 0.1459431336082982E-08 + + length representation: 0.4241929354639340E-09 + + mixed representation: 0.1164606480597624E-09 + + + Rotatory strength: + + velocity representation: -0.1623956836572353E-06 + + velocity rep. / 10^(-40)erg*cm^3: -0.1049154332784314E-01 + + length representation: -0.2239185648833963E-06 + + length rep. / 10^(-40)erg*cm^3: -0.1446621777424280E-01 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 14 a beta -8.83 16 a beta -6.90 98.4 + + = 0.0019367111 + = 0.9980632889 + = -0.0007880810 + + 1/2 = 0.4992119190 + 1/2 = 0.5007880810 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.000009 Norm: 0.000182 + y -0.000068 + z 0.000168 Norm / debye: 0.000462 + + + Electric transition dipole moment (length rep.): + + x -0.000003 Norm: 0.000098 + y -0.000095 + z -0.000023 Norm / debye: 0.000249 + + + Magnetic transition dipole moment / i: + + x 0.000244 Norm: 0.002359 + y 0.002346 + z -0.000000 Norm / Bohr mag.: 0.646552 + + + Electric quadrupole transition moment: + + xx 0.000003 + yy 0.000004 1/3*trace: 0.000001 + zz -0.000004 + xy 0.000121 + xz 0.210642 Anisotropy: 0.366808 + yz -0.021891 + + + + + 3 a excitation + + + Total energy: -279.9719232154180 + + Excitation energy: 0.9765769468200457E-01 + + Excitation energy / eV: 2.657402219040928 + + Excitation energy / nm: 466.5618291355794 + + Excitation energy / cm^(-1): 21433.38647534631 + + + Oscillator strength: + + velocity representation: 0.8134625006937733E-02 + + length representation: 0.1213515055616938E-01 + + mixed representation: 0.9935537172876817E-02 + + + Rotatory strength: + + velocity representation: 0.1384973867718711E-06 + + velocity rep. / 10^(-40)erg*cm^3: 0.8947598245142126E-02 + + length representation: 0.1691598833380001E-06 + + length rep. / 10^(-40)erg*cm^3: 0.1092854320635417E-01 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 13 a beta -9.11 16 a beta -6.90 92.8 + + = 0.0331078774 + = 0.9668921226 + = 0.0234690349 + + 1/2 = 0.5234690349 + 1/2 = 0.4765309651 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.344088 Norm: 0.353477 + y -0.080927 + z -0.000004 Norm / debye: 0.898456 + + + Electric transition dipole moment (length rep.): + + x 0.420261 Norm: 0.431733 + y -0.098865 + z -0.000003 Norm / debye: 1.097363 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y -0.000000 + z 0.000000 Norm / Bohr mag.: 0.000109 + + + Electric quadrupole transition moment: + + xx 0.628228 + yy -0.628189 1/3*trace: 0.000007 + zz -0.000016 + xy 0.147829 + xz -0.000017 Anisotropy: 1.117809 + yz -0.000052 + + + + + 4 a excitation + + + Total energy: -279.9719177248412 + + Excitation energy: 0.9766318525882037E-01 + + Excitation energy / eV: 2.657551625301865 + + Excitation energy / nm: 466.5355992562713 + + Excitation energy / cm^(-1): 21434.59151766529 + + + Oscillator strength: + + velocity representation: 0.8122287060544180E-02 + + length representation: 0.1212432500695806E-01 + + mixed representation: 0.9923570311571818E-02 + + + Rotatory strength: + + velocity representation: 0.1476302374185368E-06 + + velocity rep. / 10^(-40)erg*cm^3: 0.9537624384435667E-02 + + length representation: 0.1803709060411251E-06 + + length rep. / 10^(-40)erg*cm^3: 0.1165282926981586E-01 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 12 a beta -9.11 16 a beta -6.90 92.8 + + = 0.0331009221 + = 0.9668990779 + = 0.0234547942 + + 1/2 = 0.5234547942 + 1/2 = 0.4765452058 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.080982 Norm: 0.353199 + y -0.343790 + z -0.000001 Norm / debye: 0.897749 + + + Electric transition dipole moment (length rep.): + + x -0.098915 Norm: 0.431528 + y -0.420038 + z -0.000003 Norm / debye: 1.096843 + + + Magnetic transition dipole moment / i: + + x -0.000000 Norm: 0.000000 + y -0.000000 + z 0.000000 Norm / Bohr mag.: 0.000136 + + + Electric quadrupole transition moment: + + xx -0.147860 + yy 0.147859 1/3*trace: 0.000001 + zz 0.000005 + xy 0.628187 + xz -0.000042 Anisotropy: 1.117786 + yz 0.000008 + + + + + 5 a excitation + + + Total energy: -279.8832283979690 + + Excitation energy: 0.1863525121309581 + + Excitation energy / eV: 5.070912034870232 + + Excitation energy / nm: 244.5008770688352 + + Excitation energy / cm^(-1): 40899.64877995930 + + + Oscillator strength: + + velocity representation: 0.1444787335222054E-11 + + length representation: 0.1432831275341385E-11 + + mixed representation: 0.8535093097959455E-12 + + + Rotatory strength: + + velocity representation: -0.3857531768224608E-12 + + velocity rep. / 10^(-40)erg*cm^3: -0.2492151316674277E-07 + + length representation: -0.4774971882692591E-12 + + length rep. / 10^(-40)erg*cm^3: -0.3084861818263608E-07 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 16 a alpha -8.17 17 a alpha -3.04 99.7 + + = 0.9972255905 + = 0.0027744095 + = 0.0006311074 + + 1/2 = 0.5006311074 + 1/2 = 0.4993688926 + + = 1.0000000000 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.000002 Norm: 0.000003 + y -0.000002 + z 0.000002 Norm / debye: 0.000009 + + + Electric transition dipole moment (length rep.): + + x -0.000003 Norm: 0.000003 + y -0.000001 + z -0.000001 Norm / debye: 0.000009 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000040 + + + Electric quadrupole transition moment: + + xx -0.000000 + yy -0.000006 1/3*trace: -0.000005 + zz -0.000010 + xy -0.000005 + xz -0.000013 Anisotropy: 0.000059 + yz 0.000031 + + + + + 6 a excitation + + + Total energy: -279.8785348391943 + + Excitation energy: 0.1910460709056967 + + Excitation energy / eV: 5.198630322136823 + + Excitation energy / nm: 238.4940577107748 + + Excitation energy / cm^(-1): 41929.76585871379 + + + Oscillator strength: + + velocity representation: 0.9739034102092466E-04 + + length representation: 0.1027026101658901E-03 + + mixed representation: 0.1000112060488071E-03 + + + Rotatory strength: + + velocity representation: 0.6602204130922899E-08 + + velocity rep. / 10^(-40)erg*cm^3: 0.4265341857548592E-03 + + length representation: 0.6779938106634969E-08 + + length rep. / 10^(-40)erg*cm^3: 0.4380166566248904E-03 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 15 a alpha -9.08 17 a alpha -3.04 46.2 + 14 a beta -8.83 17 a beta -2.91 39.9 + 15 a beta -8.83 17 a beta -2.91 12.9 + + = 0.4706720741 + = 0.5293279259 + = -0.4985094757 + + 1/2 = 0.0014905243 + 1/2 = 0.9985094757 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.008083 Norm: 0.027653 + y -0.026445 + z -0.000000 Norm / debye: 0.070286 + + + Electric transition dipole moment (length rep.): + + x 0.008308 Norm: 0.028397 + y -0.027154 + z -0.000000 Norm / debye: 0.072178 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y -0.000000 + z -0.000000 Norm / Bohr mag.: 0.000066 + + + Electric quadrupole transition moment: + + xx 0.004742 + yy -0.004736 1/3*trace: 0.000002 + zz 0.000001 + xy 0.015400 + xz 0.000022 Anisotropy: 0.027907 + yz 0.000007 + + + + + 7 a excitation + + + Total energy: -279.8785300080916 + + Excitation energy: 0.1910509020084294 + + Excitation energy / eV: 5.198761783187220 + + Excitation energy / nm: 238.4880269133181 + + Excitation energy / cm^(-1): 41930.82616320193 + + + Oscillator strength: + + velocity representation: 0.9773167850752149E-04 + + length representation: 0.1032848671235739E-03 + + mixed representation: 0.1004699085004897E-03 + + + Rotatory strength: + + velocity representation: 0.5277548592367868E-08 + + velocity rep. / 10^(-40)erg*cm^3: 0.3409550578849892E-03 + + length representation: 0.5425456433189068E-08 + + length rep. / 10^(-40)erg*cm^3: 0.3505106167862877E-03 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 14 a alpha -9.08 17 a alpha -3.04 46.2 + 15 a beta -8.83 17 a beta -2.91 39.9 + 14 a beta -8.83 17 a beta -2.91 12.9 + + = 0.4706500437 + = 0.5293499563 + = -0.4985090653 + + 1/2 = 0.0014909347 + 1/2 = 0.9985090653 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.026500 Norm: 0.027701 + y 0.008067 + z -0.000000 Norm / debye: 0.070408 + + + Electric transition dipole moment (length rep.): + + x 0.027245 Norm: 0.028477 + y 0.008285 + z -0.000000 Norm / debye: 0.072381 + + + Magnetic transition dipole moment / i: + + x 0.000000 Norm: 0.000000 + y 0.000000 + z 0.000000 Norm / Bohr mag.: 0.000052 + + + Electric quadrupole transition moment: + + xx 0.015550 + yy -0.015538 1/3*trace: 0.000004 + zz 0.000001 + xy -0.004701 + xz -0.000006 Anisotropy: 0.028127 + yz 0.000018 + + + + + 8 a excitation + + + Total energy: -279.8470719905897 + + Excitation energy: 0.2225089195103409 + + Excitation energy / eV: 6.054778360154527 + + Excitation energy / nm: 204.7709042867492 + + Excitation energy / cm^(-1): 48835.06293698808 + + + Oscillator strength: + + velocity representation: 0.1577909312158840E-09 + + length representation: 0.1201117362086292E-09 + + mixed representation: 0.1371797128586697E-09 + + + Rotatory strength: + + velocity representation: 0.7074605216073807E-07 + + velocity rep. / 10^(-40)erg*cm^3: 0.4570535711311469E-02 + + length representation: 0.6172453712726647E-07 + + length rep. / 10^(-40)erg*cm^3: 0.3987702388867812E-02 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 13 a beta -9.11 17 a beta -2.91 93.7 + + = 0.0616548385 + = 0.9383451615 + = -0.2390648714 + + 1/2 = 0.2609351286 + 1/2 = 0.7390648714 + + = 1.0000000000 + + + Change of electron number: + + 0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.000032 Norm: 0.000033 + y 0.000008 + z -0.000003 Norm / debye: 0.000083 + + + Electric transition dipole moment (length rep.): + + x -0.000028 Norm: 0.000028 + y 0.000007 + z 0.000000 Norm / debye: 0.000072 + + + Magnetic transition dipole moment / i: + + x -0.002194 Norm: 0.002201 + y 0.000184 + z 0.000000 Norm / Bohr mag.: 0.603359 + + + Electric quadrupole transition moment: + + xx -0.000045 + yy 0.000045 1/3*trace: -0.000000 + zz -0.000001 + xy -0.000004 + xz -0.018976 Anisotropy: 0.393491 + yz -0.226388 + + + + + 9 a excitation + + + Total energy: -279.8470565182872 + + Excitation energy: 0.2225243918128351 + + Excitation energy / eV: 6.055199383107359 + + Excitation energy / nm: 204.7566663987257 + + Excitation energy / cm^(-1): 48838.45871486408 + + + Oscillator strength: + + velocity representation: 0.3967989346121699E-09 + + length representation: 0.1653587585761768E-09 + + mixed representation: 0.2336045924180265E-09 + + + Rotatory strength: + + velocity representation: 0.7763391276571961E-07 + + velocity rep. / 10^(-40)erg*cm^3: 0.5015524681128144E-02 + + length representation: 0.6773590398298486E-07 + + length rep. / 10^(-40)erg*cm^3: 0.4376065640932115E-02 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 12 a beta -9.11 17 a beta -2.91 93.7 + + = 0.0616882338 + = 0.9383117662 + = -0.2391272097 + + 1/2 = 0.2608727903 + 1/2 = 0.7391272097 + + = 1.0000000000 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x -0.000003 Norm: 0.000052 + y -0.000035 + z -0.000038 Norm / debye: 0.000131 + + + Electric transition dipole moment (length rep.): + + x -0.000002 Norm: 0.000033 + y -0.000031 + z -0.000013 Norm / debye: 0.000085 + + + Magnetic transition dipole moment / i: + + x -0.000184 Norm: 0.002201 + y -0.002194 + z -0.000000 Norm / Bohr mag.: 0.603306 + + + Electric quadrupole transition moment: + + xx -0.000001 + yy -0.000000 1/3*trace: -0.000001 + zz -0.000001 + xy 0.000061 + xz 0.226404 Anisotropy: 0.393520 + yz -0.018993 + + + + + 10 a excitation + + + Total energy: -279.8116302711450 + + Excitation energy: 0.2579506389549748 + + Excitation energy / eV: 7.019197028908454 + + Excitation energy / nm: 176.6359364124431 + + Excitation energy / cm^(-1): 56613.62122347212 + + + Oscillator strength: + + velocity representation: 0.1427839004851784E-08 + + length representation: 0.1847569671416052E-08 + + mixed representation: 0.1606922315300489E-08 + + + Rotatory strength: + + velocity representation: 0.3119648069210263E-06 + + velocity rep. / 10^(-40)erg*cm^3: 0.2015442907634413E-01 + + length representation: 0.3638879465011652E-06 + + length rep. / 10^(-40)erg*cm^3: 0.2350891397615510E-01 + + + Dominant contributions: + + occ. orbital energy / eV virt. orbital energy / eV |coeff.|^2*100 + 13 a alpha -10.06 17 a alpha -3.04 57.7 + 12 a alpha -10.06 17 a alpha -3.04 35.9 + + = 0.9361096979 + = 0.0638903021 + = 0.2391425575 + + 1/2 = 0.7391425575 + 1/2 = 0.2608574425 + + = 1.0000000000 + + + Change of electron number: + + -0.000000 + + + Electric transition dipole moment (velocity rep.): + + x 0.000077 Norm: 0.000091 + y -0.000044 + z -0.000021 Norm / debye: 0.000232 + + + Electric transition dipole moment (length rep.): + + x 0.000090 Norm: 0.000104 + y -0.000050 + z -0.000009 Norm / debye: 0.000263 + + + Magnetic transition dipole moment / i: + + x 0.003244 Norm: 0.003540 + y -0.001418 + z -0.000000 Norm / Bohr mag.: 0.970278 + + + Electric quadrupole transition moment: + + xx 0.000313 + yy -0.000315 1/3*trace: -0.000001 + zz -0.000002 + xy 0.000160 + xz 0.166717 Anisotropy: 0.721024 + yz 0.381441 + + SUMMARY OF EXCITATION ENERGIES AND DIPOLE OSCILLATOR STRENGTHS (velocity/length): + + ----------------------------------------------------------------------------------------------- + | Exc. | energy (Eh) | energy (eV) | energy (cm-1) | energy (nm) | Osc.(vel) | Osc.(len) | + ----------------------------------------------------------------------------------------------- + | 1 a | 0.066368 | 1.80596 | 14566.038 | 686.528 | 0.00000 | 0.00000 | + | 2 a | 0.066377 | 1.80622 | 14568.151 | 686.429 | 0.00000 | 0.00000 | + | 3 a | 0.097658 | 2.65740 | 21433.386 | 466.562 | 0.00813 | 0.01214 | + | 4 a | 0.097663 | 2.65755 | 21434.592 | 466.536 | 0.00812 | 0.01212 | + | 5 a | 0.186353 | 5.07091 | 40899.649 | 244.501 | 0.00000 | 0.00000 | + | 6 a | 0.191046 | 5.19863 | 41929.766 | 238.494 | 0.00010 | 0.00010 | + | 7 a | 0.191051 | 5.19876 | 41930.826 | 238.488 | 0.00010 | 0.00010 | + | 8 a | 0.222509 | 6.05478 | 48835.063 | 204.771 | 0.00000 | 0.00000 | + | 9 a | 0.222524 | 6.05520 | 48838.459 | 204.757 | 0.00000 | 0.00000 | + | 10 a | 0.257951 | 7.01919 | 56613.621 | 176.636 | 0.00000 | 0.00000 | + ----------------------------------------------------------------------------------------------- + + + + + ------------------------------------------------------------------------ + total cpu-time : 2.11 seconds + total wall-time : 3.74 seconds + ------------------------------------------------------------------------ + + **** escf : all done **** + + + 2023-01-25 00:19:05.973 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_escf_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_escf_output.json new file mode 100644 index 0000000..cfaebd5 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_escf_output.json @@ -0,0 +1,788 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "EscfOnlyOutput", + "@version": "1.3.0", + "escf": { + "@module": "turbomoleio.output.data", + "@class": "EscfData", + "@version": "1.3.0", + "calc_type": "RPA UHF-EXCITATION", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "EscfIterationData", + "@version": "1.3.0", + "steps": [ + [ + [ + "a", + 0, + 0.07883659515532002 + ] + ], + [ + [ + "a", + 0, + 0.02178615279982761 + ] + ], + [ + [ + "a", + 0, + 0.003048709095992678 + ] + ], + [ + [ + "a", + 1, + 0.0005923431214770775 + ] + ], + [ + [ + "a", + 5, + 0.0001460143461808554 + ] + ], + [ + [ + "a", + 9, + 2.59024460222327e-05 + ] + ], + [ + [ + "a", + 10, + 9.666026785391291e-06 + ] + ] + ], + "converged": true + }, + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 16, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 8747, + "max_treated_vectors": 18, + "irrep_data": { + "a": { + "tensor_space_dim": 1255, + "n_roots": 10 + } + }, + "gs_tot_en": -280.0695809101, + "excitations": { + "a": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -280.0032131563601, + "osc_stre": 3.719565467446828e-10, + "rot_stre": -2.148551926178635e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 98.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 8.9e-05, + -2e-05, + -3e-06 + ], + "magnetic_dipole": [ + -0.002347, + 0.000244, + 0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 0.366824, + "moment": [ + [ + 0.000104, + 1.6e-05, + 0.021883 + ], + [ + 1.6e-05, + -9.6e-05, + 0.210652 + ], + [ + 0.021883, + 0.210652, + -5e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -280.0032035309166, + "osc_stre": 4.24192935463934e-10, + "rot_stre": -2.239185648833963e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 98.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -3e-06, + -9.5e-05, + -2.3e-05 + ], + "magnetic_dipole": [ + 0.000244, + 0.002346, + -0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 0.366808, + "moment": [ + [ + 3e-06, + 0.000121, + 0.210642 + ], + [ + 0.000121, + 4e-06, + -0.021891 + ], + [ + 0.210642, + -0.021891, + -4e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.971923215418, + "osc_stre": 0.01213515055616938, + "rot_stre": 1.691598833380001e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 92.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.420261, + -0.098865, + -3e-06 + ], + "magnetic_dipole": [ + 0.0, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 2.1e-05, + "anisotropy": 1.117809, + "moment": [ + [ + 0.628228, + 0.147829, + -1.7e-05 + ], + [ + 0.147829, + -0.628189, + -5.2e-05 + ], + [ + -1.7e-05, + -5.2e-05, + -1.6e-05 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.9719177248412, + "osc_stre": 0.01212432500695806, + "rot_stre": 1.803709060411251e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 92.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.098915, + -0.420038, + -3e-06 + ], + "magnetic_dipole": [ + -0.0, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 1.117786, + "moment": [ + [ + -0.14786, + 0.628187, + -4.2e-05 + ], + [ + 0.628187, + 0.147859, + 8e-06 + ], + [ + -4.2e-05, + 8e-06, + 5e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.883228397969, + "osc_stre": 1.432831275341385e-12, + "rot_stre": -4.774971882692591e-13, + "dominant_contributions": [ + { + "occ_orb": { + "index": 16, + "irrep": "a", + "energy": -8.17, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 99.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -3e-06, + -1e-06, + -1e-06 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.5000000000000002e-05, + "anisotropy": 5.9e-05, + "moment": [ + [ + -0.0, + -5e-06, + -1.3e-05 + ], + [ + -5e-06, + -6e-06, + 3.1e-05 + ], + [ + -1.3e-05, + 3.1e-05, + -1e-05 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.8785348391943, + "osc_stre": 0.0001027026101658901, + "rot_stre": 6.779938106634969e-09, + "dominant_contributions": [ + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -9.08, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 46.2 + }, + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 39.9 + }, + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 12.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.008308, + -0.027154, + -0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.0, + -0.0 + ], + "electric_quadrupole": { + "trace": 6e-06, + "anisotropy": 0.027907, + "moment": [ + [ + 0.004742, + 0.0154, + 2.2e-05 + ], + [ + 0.0154, + -0.004736, + 7e-06 + ], + [ + 2.2e-05, + 7e-06, + 1e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.8785300080916, + "osc_stre": 0.0001032848671235739, + "rot_stre": 5.425456433189068e-09, + "dominant_contributions": [ + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -9.08, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 46.2 + }, + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 39.9 + }, + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 12.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.027245, + 0.008285, + -0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 1.2e-05, + "anisotropy": 0.028127, + "moment": [ + [ + 0.01555, + -0.004701, + -6e-06 + ], + [ + -0.004701, + -0.015538, + 1.8e-05 + ], + [ + -6e-06, + 1.8e-05, + 1e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.8470719905897, + "osc_stre": 1.201117362086292e-10, + "rot_stre": 6.172453712726647e-08, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 93.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -2.8e-05, + 7e-06, + 0.0 + ], + "magnetic_dipole": [ + -0.002194, + 0.000184, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.0, + "anisotropy": 0.393491, + "moment": [ + [ + -4.5e-05, + -4e-06, + -0.018976 + ], + [ + -4e-06, + 4.5e-05, + -0.226388 + ], + [ + -0.018976, + -0.226388, + -1e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.8470565182872, + "osc_stre": 1.653587585761768e-10, + "rot_stre": 6.773590398298486e-08, + "dominant_contributions": [ + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 93.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -2e-06, + -3.1e-05, + -1.3e-05 + ], + "magnetic_dipole": [ + -0.000184, + -0.002194, + -0.0 + ], + "electric_quadrupole": { + "trace": -3e-06, + "anisotropy": 0.39352, + "moment": [ + [ + -1e-06, + 6.1e-05, + 0.226404 + ], + [ + 6.1e-05, + -0.0, + -0.018993 + ], + [ + 0.226404, + -0.018993, + -1e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.811630271145, + "osc_stre": 1.847569671416052e-09, + "rot_stre": 3.638879465011652e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -10.06, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 57.7 + }, + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -10.06, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 35.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 9e-05, + -5e-05, + -9e-06 + ], + "magnetic_dipole": [ + 0.003244, + -0.001418, + -0.0 + ], + "electric_quadrupole": { + "trace": -3e-06, + "anisotropy": 0.721024, + "moment": [ + [ + 0.000313, + 0.00016, + 0.166717 + ], + [ + 0.00016, + -0.000315, + 0.381441 + ], + [ + 0.166717, + 0.381441, + -2e-06 + ] + ] + } + } + ] + } + ] + } + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:02.284000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:05.973000" + }, + "cpu_time": 2.11, + "wall_time": 3.74 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "escf" + } +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_output.json new file mode 100644 index 0000000..2c463e6 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_output.json @@ -0,0 +1,940 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "EscfOutput", + "@version": "1.3.0", + "dft": { + "@module": "turbomoleio.output.data", + "@class": "DFTData", + "@version": "1.3.0", + "functional": { + "@module": "turbomoleio.output.data", + "@class": "FunctionalData", + "@version": "1.3.0", + "msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "name": "b-p", + "func_type": "GGA", + "xcfun": null + }, + "ri": { + "@module": "turbomoleio.output.data", + "@class": "RiData", + "@version": "1.3.0", + "ricore": 500, + "marij": false, + "rij_memory": 3, + "rik": false + }, + "spherical_gridsize": 3, + "gridpoints": 302, + "dispersion_correction": null + }, + "escf": { + "@module": "turbomoleio.output.data", + "@class": "EscfData", + "@version": "1.3.0", + "calc_type": "RPA UHF-EXCITATION", + "iterations": { + "@module": "turbomoleio.output.data", + "@class": "EscfIterationData", + "@version": "1.3.0", + "steps": [ + [ + [ + "a", + 0, + 0.07883659515532002 + ] + ], + [ + [ + "a", + 0, + 0.02178615279982761 + ] + ], + [ + [ + "a", + 0, + 0.003048709095992678 + ] + ], + [ + [ + "a", + 1, + 0.0005923431214770775 + ] + ], + [ + [ + "a", + 5, + 0.0001460143461808554 + ] + ], + [ + [ + "a", + 9, + 2.59024460222327e-05 + ] + ], + [ + [ + "a", + 10, + 9.666026785391291e-06 + ] + ] + ], + "converged": true + }, + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 16, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 8747, + "max_treated_vectors": 18, + "irrep_data": { + "a": { + "tensor_space_dim": 1255, + "n_roots": 10 + } + }, + "gs_tot_en": -280.0695809101, + "excitations": { + "a": [ + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -280.0032131563601, + "osc_stre": 3.719565467446828e-10, + "rot_stre": -2.148551926178635e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 98.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 8.9e-05, + -2e-05, + -3e-06 + ], + "magnetic_dipole": [ + -0.002347, + 0.000244, + 0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 0.366824, + "moment": [ + [ + 0.000104, + 1.6e-05, + 0.021883 + ], + [ + 1.6e-05, + -9.6e-05, + 0.210652 + ], + [ + 0.021883, + 0.210652, + -5e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -280.0032035309166, + "osc_stre": 4.24192935463934e-10, + "rot_stre": -2.239185648833963e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 98.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -3e-06, + -9.5e-05, + -2.3e-05 + ], + "magnetic_dipole": [ + 0.000244, + 0.002346, + -0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 0.366808, + "moment": [ + [ + 3e-06, + 0.000121, + 0.210642 + ], + [ + 0.000121, + 4e-06, + -0.021891 + ], + [ + 0.210642, + -0.021891, + -4e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.971923215418, + "osc_stre": 0.01213515055616938, + "rot_stre": 1.691598833380001e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 92.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.420261, + -0.098865, + -3e-06 + ], + "magnetic_dipole": [ + 0.0, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 2.1e-05, + "anisotropy": 1.117809, + "moment": [ + [ + 0.628228, + 0.147829, + -1.7e-05 + ], + [ + 0.147829, + -0.628189, + -5.2e-05 + ], + [ + -1.7e-05, + -5.2e-05, + -1.6e-05 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.9719177248412, + "osc_stre": 0.01212432500695806, + "rot_stre": 1.803709060411251e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 92.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.098915, + -0.420038, + -3e-06 + ], + "magnetic_dipole": [ + -0.0, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 1.117786, + "moment": [ + [ + -0.14786, + 0.628187, + -4.2e-05 + ], + [ + 0.628187, + 0.147859, + 8e-06 + ], + [ + -4.2e-05, + 8e-06, + 5e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.883228397969, + "osc_stre": 1.432831275341385e-12, + "rot_stre": -4.774971882692591e-13, + "dominant_contributions": [ + { + "occ_orb": { + "index": 16, + "irrep": "a", + "energy": -8.17, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 99.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -3e-06, + -1e-06, + -1e-06 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.5000000000000002e-05, + "anisotropy": 5.9e-05, + "moment": [ + [ + -0.0, + -5e-06, + -1.3e-05 + ], + [ + -5e-06, + -6e-06, + 3.1e-05 + ], + [ + -1.3e-05, + 3.1e-05, + -1e-05 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.8785348391943, + "osc_stre": 0.0001027026101658901, + "rot_stre": 6.779938106634969e-09, + "dominant_contributions": [ + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -9.08, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 46.2 + }, + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 39.9 + }, + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 12.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.008308, + -0.027154, + -0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.0, + -0.0 + ], + "electric_quadrupole": { + "trace": 6e-06, + "anisotropy": 0.027907, + "moment": [ + [ + 0.004742, + 0.0154, + 2.2e-05 + ], + [ + 0.0154, + -0.004736, + 7e-06 + ], + [ + 2.2e-05, + 7e-06, + 1e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.8785300080916, + "osc_stre": 0.0001032848671235739, + "rot_stre": 5.425456433189068e-09, + "dominant_contributions": [ + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -9.08, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 46.2 + }, + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 39.9 + }, + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 12.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.027245, + 0.008285, + -0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 1.2e-05, + "anisotropy": 0.028127, + "moment": [ + [ + 0.01555, + -0.004701, + -6e-06 + ], + [ + -0.004701, + -0.015538, + 1.8e-05 + ], + [ + -6e-06, + 1.8e-05, + 1e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.8470719905897, + "osc_stre": 1.201117362086292e-10, + "rot_stre": 6.172453712726647e-08, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 93.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -2.8e-05, + 7e-06, + 0.0 + ], + "magnetic_dipole": [ + -0.002194, + 0.000184, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.0, + "anisotropy": 0.393491, + "moment": [ + [ + -4.5e-05, + -4e-06, + -0.018976 + ], + [ + -4e-06, + 4.5e-05, + -0.226388 + ], + [ + -0.018976, + -0.226388, + -1e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.8470565182872, + "osc_stre": 1.653587585761768e-10, + "rot_stre": 6.773590398298486e-08, + "dominant_contributions": [ + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 93.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -2e-06, + -3.1e-05, + -1.3e-05 + ], + "magnetic_dipole": [ + -0.000184, + -0.002194, + -0.0 + ], + "electric_quadrupole": { + "trace": -3e-06, + "anisotropy": 0.39352, + "moment": [ + [ + -1e-06, + 6.1e-05, + 0.226404 + ], + [ + 6.1e-05, + -0.0, + -0.018993 + ], + [ + 0.226404, + -0.018993, + -1e-06 + ] + ] + } + } + ] + }, + { + "@module": "turbomoleio.output.data", + "@class": "SingleExcitation", + "@version": "1.3.0", + "tot_en": -279.811630271145, + "osc_stre": 1.847569671416052e-09, + "rot_stre": 3.638879465011652e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -10.06, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 57.7 + }, + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -10.06, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 35.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 9e-05, + -5e-05, + -9e-06 + ], + "magnetic_dipole": [ + 0.003244, + -0.001418, + -0.0 + ], + "electric_quadrupole": { + "trace": -3e-06, + "anisotropy": 0.721024, + "moment": [ + [ + 0.000313, + 0.00016, + 0.166717 + ], + [ + 0.00016, + -0.000315, + 0.381441 + ], + [ + 0.166717, + 0.381441, + -2e-06 + ] + ] + } + } + ] + } + ] + } + }, + "geometry": { + "@module": "turbomoleio.output.data", + "@class": "GeometryData", + "@version": "1.3.0", + "center_of_mass": [ + 0.0, + 0.0, + 0.0 + ], + "center_of_charge": [ + 0.0, + 0.0, + 0.0 + ], + "molecule": { + "@module": "pymatgen.core.structure", + "@class": "Molecule", + "charge": 0.0, + "spin_multiplicity": 2, + "sites": [ + { + "name": "O", + "species": [ + { + "element": "O", + "occu": 1 + } + ], + "xyz": [ + -0.6090991837390951, + -1.0549907333237556, + 0.0 + ], + "properties": {} + }, + { + "name": "N", + "species": [ + { + "element": "N", + "occu": 1 + } + ], + "xyz": [ + 0.0, + 0.0, + 0.0 + ], + "properties": {} + }, + { + "name": "O", + "species": [ + { + "element": "O", + "occu": 1 + } + ], + "xyz": [ + -0.6090991837390951, + 1.0549907333237556, + 0.0 + ], + "properties": {} + }, + { + "name": "O", + "species": [ + { + "element": "O", + "occu": 1 + } + ], + "xyz": [ + 1.2181983621864179, + 0.0, + 0.0 + ], + "properties": {} + } + ] + } + }, + "basis": { + "@module": "turbomoleio.output.data", + "@class": "BasisData", + "@version": "1.3.0", + "basis_per_specie": { + "o": "def-SV(P)", + "n": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 56, + "number_scf_aux_basis_func": 148 + }, + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:02.284000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:05.973000" + }, + "cpu_time": 2.11, + "wall_time": 3.74 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "escf" + }, + "cosmo": { + "@module": "turbomoleio.output.data", + "@class": "CosmoData", + "@version": "1.3.0", + "info": { + "area": 267.911883, + "volume": 374.012013 + }, + "parameters": null, + "screening_charge": null, + "energies": null, + "element_radius": null + }, + "integral": { + "@module": "turbomoleio.output.data", + "@class": "IntegralData", + "@version": "1.3.0", + "integral_neglect_threshold": 3.3e-13, + "thize": 1e-05, + "thime": 5 + }, + "symmetry": { + "@module": "turbomoleio.output.data", + "@class": "SymmetryData", + "@version": "1.3.0", + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + } +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_parser.json new file mode 100644 index 0000000..1e17da7 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/escf/no3_ridft_cosmo/ref_parser.json @@ -0,0 +1,860 @@ +{ + "all_done": true, + "header": { + "executable": "escf", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:02.284000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + 0.0 + ], + "center_of_charge": [ + 0.0, + 0.0, + 0.0 + ] + }, + "coordinates": { + "coords": [ + [ + -1.15103064, + -1.99364355, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -1.15103064, + 1.99364355, + 0.0 + ], + [ + 2.30206127, + 0.0, + 0.0 + ] + ], + "species": [ + "o", + "n", + "o", + "o" + ], + "charges": [ + 8.0, + 7.0, + 8.0, + 8.0 + ], + "isotopes": [ + 0, + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "o": "def-SV(P)", + "n": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 56, + "number_scf_aux_basis_func": 148 + }, + "symmetry": { + "symbol": "c1", + "n_reps": 1, + "reps": [ + "a" + ] + }, + "cosmo_header": { + "area": 267.911883, + "volume": 374.012013 + }, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": { + "marij": false, + "rij_memory": 3, + "rik": false, + "ricore": 500 + }, + "dftd": null, + "pre_scf_run": null, + "scf_iterations": null, + "scf_energies": null, + "cosmo_results": null, + "electrostatic_moments": null, + "timings": { + "cpu_time": 2.11, + "wall_time": 3.74, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:05.973000" + } + }, + "s2": null, + "is_uhf": true, + "fermi": null, + "integral": { + "integral_neglect_threshold": 3.3e-13, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": { + "calc_type": "RPA UHF-EXCITATION", + "residuum_convergence_criterium": 1e-05, + "n_occupied_orbitals": 16, + "orbital_characterization": "scfconv=7", + "max_davidson_iter": 35, + "machine_precision": 2.22e-16, + "max_core_mem": 500.0, + "max_cao_basis_vectors": 8747, + "max_treated_vectors": 18, + "irrep_data": { + "a": { + "tensor_space_dim": 1255, + "n_roots": 10 + } + } + }, + "escf_iterations": { + "steps": [ + [ + [ + "a", + 0, + 0.07883659515532002 + ] + ], + [ + [ + "a", + 0, + 0.02178615279982761 + ] + ], + [ + [ + "a", + 0, + 0.003048709095992678 + ] + ], + [ + [ + "a", + 1, + 0.0005923431214770775 + ] + ], + [ + [ + "a", + 5, + 0.0001460143461808554 + ] + ], + [ + [ + "a", + 9, + 2.59024460222327e-05 + ] + ], + [ + [ + "a", + 10, + 9.666026785391291e-06 + ] + ] + ], + "converged": true + }, + "escf_gs_total_en": -280.0695809101, + "escf_excitations": { + "a": [ + { + "tot_en": -280.0032131563601, + "osc_stre": 3.719565467446828e-10, + "rot_stre": -2.148551926178635e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 98.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 8.9e-05, + -2e-05, + -3e-06 + ], + "magnetic_dipole": [ + -0.002347, + 0.000244, + 0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 0.366824, + "moment": [ + [ + 0.000104, + 1.6e-05, + 0.021883 + ], + [ + 1.6e-05, + -9.6e-05, + 0.210652 + ], + [ + 0.021883, + 0.210652, + -5e-06 + ] + ] + } + } + ] + }, + { + "tot_en": -280.0032035309166, + "osc_stre": 4.24192935463934e-10, + "rot_stre": -2.239185648833963e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 98.4 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -3e-06, + -9.5e-05, + -2.3e-05 + ], + "magnetic_dipole": [ + 0.000244, + 0.002346, + -0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 0.366808, + "moment": [ + [ + 3e-06, + 0.000121, + 0.210642 + ], + [ + 0.000121, + 4e-06, + -0.021891 + ], + [ + 0.210642, + -0.021891, + -4e-06 + ] + ] + } + } + ] + }, + { + "tot_en": -279.971923215418, + "osc_stre": 0.01213515055616938, + "rot_stre": 1.691598833380001e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 92.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.420261, + -0.098865, + -3e-06 + ], + "magnetic_dipole": [ + 0.0, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 2.1e-05, + "anisotropy": 1.117809, + "moment": [ + [ + 0.628228, + 0.147829, + -1.7e-05 + ], + [ + 0.147829, + -0.628189, + -5.2e-05 + ], + [ + -1.7e-05, + -5.2e-05, + -1.6e-05 + ] + ] + } + } + ] + }, + { + "tot_en": -279.9719177248412, + "osc_stre": 0.01212432500695806, + "rot_stre": 1.803709060411251e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 16, + "irrep": "a", + "energy": -6.9, + "spin": "beta" + }, + "coeff": 92.8 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -0.098915, + -0.420038, + -3e-06 + ], + "magnetic_dipole": [ + -0.0, + -0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 3e-06, + "anisotropy": 1.117786, + "moment": [ + [ + -0.14786, + 0.628187, + -4.2e-05 + ], + [ + 0.628187, + 0.147859, + 8e-06 + ], + [ + -4.2e-05, + 8e-06, + 5e-06 + ] + ] + } + } + ] + }, + { + "tot_en": -279.883228397969, + "osc_stre": 1.432831275341385e-12, + "rot_stre": -4.774971882692591e-13, + "dominant_contributions": [ + { + "occ_orb": { + "index": 16, + "irrep": "a", + "energy": -8.17, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 99.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -3e-06, + -1e-06, + -1e-06 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": -1.5000000000000002e-05, + "anisotropy": 5.9e-05, + "moment": [ + [ + -0.0, + -5e-06, + -1.3e-05 + ], + [ + -5e-06, + -6e-06, + 3.1e-05 + ], + [ + -1.3e-05, + 3.1e-05, + -1e-05 + ] + ] + } + } + ] + }, + { + "tot_en": -279.8785348391943, + "osc_stre": 0.0001027026101658901, + "rot_stre": 6.779938106634969e-09, + "dominant_contributions": [ + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -9.08, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 46.2 + }, + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 39.9 + }, + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 12.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.008308, + -0.027154, + -0.0 + ], + "magnetic_dipole": [ + 0.0, + -0.0, + -0.0 + ], + "electric_quadrupole": { + "trace": 6e-06, + "anisotropy": 0.027907, + "moment": [ + [ + 0.004742, + 0.0154, + 2.2e-05 + ], + [ + 0.0154, + -0.004736, + 7e-06 + ], + [ + 2.2e-05, + 7e-06, + 1e-06 + ] + ] + } + } + ] + }, + { + "tot_en": -279.8785300080916, + "osc_stre": 0.0001032848671235739, + "rot_stre": 5.425456433189068e-09, + "dominant_contributions": [ + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -9.08, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 46.2 + }, + { + "occ_orb": { + "index": 15, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 39.9 + }, + { + "occ_orb": { + "index": 14, + "irrep": "a", + "energy": -8.83, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 12.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 0.027245, + 0.008285, + -0.0 + ], + "magnetic_dipole": [ + 0.0, + 0.0, + 0.0 + ], + "electric_quadrupole": { + "trace": 1.2e-05, + "anisotropy": 0.028127, + "moment": [ + [ + 0.01555, + -0.004701, + -6e-06 + ], + [ + -0.004701, + -0.015538, + 1.8e-05 + ], + [ + -6e-06, + 1.8e-05, + 1e-06 + ] + ] + } + } + ] + }, + { + "tot_en": -279.8470719905897, + "osc_stre": 1.201117362086292e-10, + "rot_stre": 6.172453712726647e-08, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 93.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -2.8e-05, + 7e-06, + 0.0 + ], + "magnetic_dipole": [ + -0.002194, + 0.000184, + 0.0 + ], + "electric_quadrupole": { + "trace": -0.0, + "anisotropy": 0.393491, + "moment": [ + [ + -4.5e-05, + -4e-06, + -0.018976 + ], + [ + -4e-06, + 4.5e-05, + -0.226388 + ], + [ + -0.018976, + -0.226388, + -1e-06 + ] + ] + } + } + ] + }, + { + "tot_en": -279.8470565182872, + "osc_stre": 1.653587585761768e-10, + "rot_stre": 6.773590398298486e-08, + "dominant_contributions": [ + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -9.11, + "spin": "beta" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -2.91, + "spin": "beta" + }, + "coeff": 93.7 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + -2e-06, + -3.1e-05, + -1.3e-05 + ], + "magnetic_dipole": [ + -0.000184, + -0.002194, + -0.0 + ], + "electric_quadrupole": { + "trace": -3e-06, + "anisotropy": 0.39352, + "moment": [ + [ + -1e-06, + 6.1e-05, + 0.226404 + ], + [ + 6.1e-05, + -0.0, + -0.018993 + ], + [ + 0.226404, + -0.018993, + -1e-06 + ] + ] + } + } + ] + }, + { + "tot_en": -279.811630271145, + "osc_stre": 1.847569671416052e-09, + "rot_stre": 3.638879465011652e-07, + "dominant_contributions": [ + { + "occ_orb": { + "index": 13, + "irrep": "a", + "energy": -10.06, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 57.7 + }, + { + "occ_orb": { + "index": 12, + "irrep": "a", + "energy": -10.06, + "spin": "alpha" + }, + "virt_orb": { + "index": 17, + "irrep": "a", + "energy": -3.04, + "spin": "alpha" + }, + "coeff": 35.9 + } + ], + "moments_columns": [ + { + "electric_dipole": [ + 9e-05, + -5e-05, + -9e-06 + ], + "magnetic_dipole": [ + 0.003244, + -0.001418, + -0.0 + ], + "electric_quadrupole": { + "trace": -3e-06, + "anisotropy": 0.721024, + "moment": [ + [ + 0.000313, + 0.00016, + 0.166717 + ], + [ + 0.00016, + -0.000315, + 0.381441 + ], + [ + 0.166717, + 0.381441, + -2e-06 + ] + ] + } + } + ] + } + ] + }, + "rdgrad_memory": null, + "gradient": null, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/grad.log b/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/grad.log new file mode 100644 index 0000000..c4b42b8 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/grad.log @@ -0,0 +1,237 @@ + + grad (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:19:26.512 + + + + g r a d - program + + reinhart ahlrichs, hans horn & ansgar schaefer + density functional version : oliver treutler + + + quantum chemistry group + universitaet karlsruhe + germany + + + + + + References: + + Density Functional: + O. Treutler and R. Ahlrichs + Efficient Molecular Numerical Integration Schemes + J. Chem. Phys. 102: 346 (1995) + Parallel Version: + Performance of parallel TURBOMOLE for Density + Functional Calculations + M. v. Arnim and R. Ahlrichs + J. Comp. Chem. 19: 1746 (1998) + + + + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 -0.72557892 o 8.000 0 + 1.41713421 0.00000000 0.36278946 h 1.000 0 + -1.41713421 0.00000000 0.36278946 h 1.000 0 + + center of nuclear mass : 0.00000000 0.00000000 -0.60378908 + center of nuclear charge: 0.00000000 0.00000000 -0.50790524 + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 2 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 3 32 18 + --------------------------------------------------------------------------- + + total number of primitive shells : 16 + total number of contracted shells : 10 + total number of cartesian basis functions : 19 + total number of SCF-basis functions : 18 + + + ************************************************************************* + dscf + ************************************************************************* + + + + integral neglect threshold : 0.18E-09 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + WARNING : cannot change filename for statistics + + symmetry group of the molecule : c2v + + the group has the following generators : + c2(z) + mirror plane sigma(xz) + + 4 symmetry operations found + + there are 4 real representations : a1 a2 b1 b2 + + maximum number of shells which are related by symmetry : 2 + + + mo occupation : + irrep mo's occupied + a1 9 3 + a2 1 0 + b1 5 1 + b2 3 1 + + number of basis functions : 18 + number of occupied orbitals : 5 + + + number of off-diagonal lagrangians expected : 0 + MOs are in ASCII format ! + + + reading orbital data $scfmo from file mos + orbital characterization : scfconv=7 + time elapsed for calculating density matrices : 0.000 sec + + grad preliminaries : cpu elapsed 0.030 s + wall 0.188 s + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 2 + partition function : becke + partition sharpness : 3 + + + : input of entry tasksize + from data group '$pardft' failed ! + + Default values taken + + : input of entry memdiv + from data group '$pardft' failed ! + + Default values taken + + + + and now featuring + the super-duper gradient ..... wow ..... + + + ------------------------------------------------------------------------------ + + SCF ENERGY GRADIENT with respect to NUCLEAR COORDINATES + + ------------------------------------------------------------------------------ + + + + ---------------------------------------- + S+T+V CONTRIBUTIONS TO ENERGY GRADIENT + ---------------------------------------- + + 1e-integral 1st. derivatives will be neglected if expon. factor < 0.100000E-10 + + cpu time for 1e-part of gradient : 0.00 sec + + + ----------------------------------------------- + TWO ELECTRON CONTRIBUTIONS TO ENERGY GRADIENT + ----------------------------------------------- + + biggest 1-particle AO density matrix element is expected to be 2.1355116296 + + setting up bound for integral derivative estimation + + increment for numerical differentiation : 0.00050000 + + biggest AO integral is expected to be 4.776656448 + biggest cartesian 1st derivative AO integral is expected to be 8.648821438 + + 2e-integral 1st. derivatives will be neglected if expon. factor < 0.100000E-06 + outer boundary for 2e-integral derivative neglection is 0.182732E-08 + + cpu time for 2e-part of gradient : 0.00 min + + Overall gridpoints after grid construction = 3891 + + Integrated ground state density : 9.999998377624109 + + + ------------------------------------------------ + cartesian gradient of the energy (hartree/bohr) + ------------------------------------------------ + + ATOM 1 o 2 h 3 h +dE/dx 0.0000000D+00 -0.2701367D-01 0.2701367D-01 +dE/dy 0.0000000D+00 0.0000000D+00 0.0000000D+00 +dE/dz 0.4134789D-01 -0.2065737D-01 -0.2065737D-01 + + resulting FORCE (fx,fy,fz) = (-.173D-16,0.000D+00,0.332D-04) + resulting MOMENT (mx,my,mz) = (0.000D+00,-.694D-17,0.000D+00) + + + exx = -0.076564 eyy = 0.000000 ezz = -0.044990 + eyz = 0.000000 exz = -0.000000 exy = 0.000000 + + + ********************************************************************** + |maximum component of gradient| : 0.41347887E-01 (atom 1 o ) + gradient norm : 0.63423797E-01 + ********************************************************************** + + : data group $grad is missing + + *** cartesian gradients written onto *** + + + --- calculation of the energy gradient finished --- + + + + ------------------------------------------------------------------------ + total cpu-time : 0.06 seconds + total wall-time : 0.28 seconds + ------------------------------------------------------------------------ + + **** grad : all done **** + + + 2023-01-25 00:19:26.721 + diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/ref_output.json b/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/ref_output.json new file mode 100644 index 0000000..e5ad3b4 --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/ref_output.json @@ -0,0 +1,66 @@ +{ + "@module": "turbomoleio.output.files", + "@class": "GradOutput", + "@version": "1.3.0", + "gradients": [ + [ + 0.0, + 0.0, + 0.04134789 + ], + [ + -0.02701367, + 0.0, + -0.02065737 + ], + [ + 0.02701367, + 0.0, + -0.02065737 + ] + ], + "dielectric": [ + [ + -0.076564, + 0.0, + -0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.0, + 0.0, + -0.04499 + ] + ], + "run": { + "@module": "turbomoleio.output.data", + "@class": "RunData", + "@version": "1.3.0", + "host": "frontal3", + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:26.512000" + }, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:26.721000" + }, + "cpu_time": 0.06, + "wall_time": 0.28 + }, + "tm": { + "@module": "turbomoleio.output.data", + "@class": "TurbomoleData", + "@version": "1.3.0", + "version": "7.6", + "build": null, + "executable": "grad" + }, + "memory": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/ref_parser.json b/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/ref_parser.json new file mode 100644 index 0000000..46d588d --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/grad/h2o_std/ref_parser.json @@ -0,0 +1,165 @@ +{ + "all_done": true, + "header": { + "executable": "grad", + "host": "frontal3", + "tm_version": "7.6", + "tm_build": null, + "start_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:26.512000" + } + }, + "centers": { + "center_of_mass": [ + 0.0, + 0.0, + -0.60378908 + ], + "center_of_charge": [ + 0.0, + 0.0, + -0.50790524 + ] + }, + "coordinates": { + "coords": [ + [ + 0.0, + 0.0, + -0.72557892 + ], + [ + 1.41713421, + 0.0, + 0.36278946 + ], + [ + -1.41713421, + 0.0, + 0.36278946 + ] + ], + "species": [ + "o", + "h", + "h" + ], + "charges": [ + 8.0, + 1.0, + 1.0 + ], + "isotopes": [ + 0, + 0, + 0 + ] + }, + "basis": { + "basis_per_specie": { + "o": "def-SV(P)", + "h": "def-SV(P)" + }, + "aux_basis_per_specie": {}, + "number_scf_basis_func": 18, + "number_scf_aux_basis_func": null + }, + "symmetry": { + "symbol": "c2v", + "n_reps": 4, + "reps": [ + "a1", + "a2", + "b1", + "b2" + ] + }, + "cosmo_header": null, + "density_functional_data": { + "functional_msg": "B-P86 functional\n exchange: LDA + Becke (B88)\n correlation: LDA (VWN) + Perdew (P86)", + "functional_name": "b-p", + "functional_type": "GGA", + "xcfun": null, + "spherical_gridsize": 3, + "gridpoints": 302 + }, + "rij_info": null, + "dftd": null, + "pre_scf_run": null, + "scf_iterations": null, + "scf_energies": null, + "cosmo_results": null, + "electrostatic_moments": null, + "timings": { + "cpu_time": 0.06, + "wall_time": 0.28, + "end_time": { + "@module": "datetime", + "@class": "datetime", + "string": "2023-01-25 00:19:26.721000" + } + }, + "s2": null, + "is_uhf": false, + "fermi": null, + "integral": { + "integral_neglect_threshold": 1.8e-10, + "thize": 1e-05, + "thime": 5 + }, + "pre_escf_run": null, + "escf_iterations": null, + "escf_gs_total_en": null, + "escf_excitations": null, + "rdgrad_memory": null, + "gradient": { + "gradients": [ + [ + 0.0, + 0.0, + 0.04134789 + ], + [ + -0.02701367, + 0.0, + -0.02065737 + ], + [ + 0.02701367, + 0.0, + -0.02065737 + ] + ], + "dielectric": [ + [ + -0.076564, + 0.0, + -0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + -0.0, + 0.0, + -0.04499 + ] + ] + }, + "egrad_excited_state": null, + "statpt_info": null, + "relax_info": null, + "relax_gradient_values": null, + "relax_conv_info": null, + "aoforce_numerical_integration": null, + "aoforce_analysis": null, + "mp2_results": { + "energy": null + }, + "riper_scf_energies": null, + "periodicity_data": null +} \ No newline at end of file diff --git a/turbomoleio/testfiles/outputs/TM_v7.6/jobex/h2o_dscf/job.last b/turbomoleio/testfiles/outputs/TM_v7.6/jobex/h2o_dscf/job.last new file mode 100644 index 0000000..0835cea --- /dev/null +++ b/turbomoleio/testfiles/outputs/TM_v7.6/jobex/h2o_dscf/job.last @@ -0,0 +1,661 @@ + +OPTIMIZATION CYCLE 6 +mer 25 gen 2023, 00.20.45, CET + + WARNING : length of argument string +/projects/matgenix/COMMON/software/TURBOMOLE/evaluation_license/TURBOMOLE_76/bin/em64t-unknown-linux-gnu + exceeds 80 characters + argument will be ignored! + + + grad (frontal3) : TURBOMOLE rev. V7-6 19 Oct 2021 at 10:10:11 compiled Oct 19th 2021 + Copyright (C) 2021 TURBOMOLE GmbH, Karlsruhe + + + 2023-01-25 00:20:45.925 + + + + g r a d - program + + reinhart ahlrichs, hans horn & ansgar schaefer + density functional version : oliver treutler + + + quantum chemistry group + universitaet karlsruhe + germany + + + + + + References: + + Density Functional: + O. Treutler and R. Ahlrichs + Efficient Molecular Numerical Integration Schemes + J. Chem. Phys. 102: 346 (1995) + Parallel Version: + Performance of parallel TURBOMOLE for Density + Functional Calculations + M. v. Arnim and R. Ahlrichs + J. Comp. Chem. 19: 1746 (1998) + + + + + + +--------------------------------------------------+ + | Atomic coordinate, charge and isotop information | + +--------------------------------------------------+ + + atomic coordinates atom charge isotop + 0.00000000 0.00000000 -0.76469392 o 8.000 0 + 1.45675797 0.00000000 0.38234696 h 1.000 0 + -1.45675797 0.00000000 0.38234696 h 1.000 0 + + center of nuclear mass : 0.00000000 0.00000000 -0.63633856 + center of nuclear charge: 0.00000000 0.00000000 -0.53528575 + + +--------------------------------------------------+ + | basis set information | + +--------------------------------------------------+ + + we will work with the 1s 3p 5d 7f 9g ... basis set + ...i.e. with spherical basis functions... + + type atoms prim cont basis + --------------------------------------------------------------------------- + o 1 24 14 def-SV(P) [3s2p1d|7s4p1d] + h 2 4 2 def-SV(P) [2s|4s] + --------------------------------------------------------------------------- + total: 3 32 18 + --------------------------------------------------------------------------- + + total number of primitive shells : 16 + total number of contracted shells : 10 + total number of cartesian basis functions : 19 + total number of SCF-basis functions : 18 + + + ************************************************************************* + dscf + ************************************************************************* + + + + integral neglect threshold : 0.18E-09 + integral storage threshold THIZE : 0.10E-04 + integral storage threshold THIME : 5 + + + WARNING : cannot change filename for statistics + + symmetry group of the molecule : c2v + + the group has the following generators : + c2(z) + mirror plane sigma(xz) + + 4 symmetry operations found + + there are 4 real representations : a1 a2 b1 b2 + + maximum number of shells which are related by symmetry : 2 + + + mo occupation : + irrep mo's occupied + a1 9 3 + a2 1 0 + b1 5 1 + b2 3 1 + + number of basis functions : 18 + number of occupied orbitals : 5 + + + number of off-diagonal lagrangians expected : 0 + MOs are in ASCII format ! + + + reading orbital data $scfmo from file mos + orbital characterization : scfconv=7 + time elapsed for calculating density matrices : 0.000 sec + + grad preliminaries : cpu elapsed 0.034 s + wall 0.146 s + + ------------------ + density functional + ------------------ + B-P86 functional + exchange: LDA + Becke (B88) + correlation: LDA (VWN) + Perdew (P86) + + iterations will be done with small grid + + spherical integration : Lebedev's spherical grid + spherical gridsize : 3 + i.e. gridpoints : 302 + value for diffuse not defined + radial integration : Chebyshev 2nd kind (scaling 3) + radial gridsize : 3 + integration cells : 2 + partition function : becke + partition sharpness : 3 + + + : input of entry tasksize + from data group '$pardft' failed ! + + Default values taken + + : input of entry memdiv + from data group '$pardft' failed ! + + Default values taken + + + + and now featuring + the super-duper gradient ..... wow ..... + + + ------------------------------------------------------------------------------ + + SCF ENERGY GRADIENT with respect to NUCLEAR COORDINATES + + ------------------------------------------------------------------------------ + + + + ---------------------------------------- + S+T+V CONTRIBUTIONS TO ENERGY GRADIENT + ---------------------------------------- + + 1e-integral 1st. derivatives will be neglected if expon. factor < 0.100000E-10 + + cpu time for 1e-part of gradient : 0.00 sec + + + ----------------------------------------------- + TWO ELECTRON CONTRIBUTIONS TO ENERGY GRADIENT + ----------------------------------------------- + + biggest 1-particle AO density matrix element is expected to be 2.1367374605 + + setting up bound for integral derivative estimation + + increment for numerical differentiation : 0.00050000 + + biggest AO integral is expected to be 4.776656448 + biggest cartesian 1st derivative AO integral is expected to be 8.648821438 + + 2e-integral 1st. derivatives will be neglected if expon. factor < 0.100000E-06 + outer boundary for 2e-integral derivative neglection is 0.182523E-08 + + cpu time for 2e-part of gradient : 0.00 min + + Overall gridpoints after grid construction = 3892 + + Integrated ground state density : 9.999997541321479 + + + ------------------------------------------------ + cartesian gradient of the energy (hartree/bohr) + ------------------------------------------------ + + ATOM 1 o 2 h 3 h +dE/dx 0.0000000D+00 0.4202808D-04 -0.4202808D-04 +dE/dy 0.0000000D+00 0.0000000D+00 0.0000000D+00 +dE/dz -0.5391513D-04 0.3937219D-04 0.3937219D-04 + + resulting FORCE (fx,fy,fz) = (-.139D-16,0.000D+00,0.248D-04) + resulting MOMENT (mx,my,mz) = (0.000D+00,-.530D-17,0.000D+00) + + + exx = 0.000122 eyy = 0.000000 ezz = 0.000071 + eyz = 0.000000 exz = -0.000000 exy = 0.000000 + + + ********************************************************************** + |maximum component of gradient| : 0.53915131E-04 (atom 1 o ) + gradient norm : 0.97672409E-04 + ********************************************************************** + *** cartesian gradients written onto
7.5 series
7.6 series
1.4.x series
1.3.x series
7.4 series
1.2.x series
7.3 series
1.0.x and 1.1.x series